mirror of https://gitee.com/anolis/sysom.git
15 lines
284 B
Bash
Executable File
15 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
BaseDir=$(dirname $(readlink -f "$0"))
|
|
SERVICE_NAME=sysom-diagnosis
|
|
|
|
clear_app() {
|
|
rm -rf /etc/supervisord.d/${SERVICE_NAME}.ini
|
|
###use supervisorctl update to stop and clear services###
|
|
supervisorctl update
|
|
}
|
|
|
|
# Stop first
|
|
bash -x $BaseDir/stop.sh
|
|
|
|
clear_app
|