fix: 移除默认证书
This commit is contained in:
Binary file not shown.
@@ -31,6 +31,17 @@ case "$1" in
|
||||
sleep 1
|
||||
$0 start $2
|
||||
;;
|
||||
down)
|
||||
cd ${DockerDir}
|
||||
if [ -z "$2" ]; then
|
||||
${DockerCompose} down --rmi all
|
||||
if [ -f ${PIDFile} ]; then
|
||||
rm ${PIDFile}
|
||||
fi
|
||||
else
|
||||
${DockerCompose} down --rmi $2
|
||||
fi
|
||||
;;
|
||||
status)
|
||||
cd ${DockerDir}
|
||||
if [ -z "$2" ]; then
|
||||
@@ -41,7 +52,7 @@ case "$1" in
|
||||
;;
|
||||
*)
|
||||
echo "License Server Service ... "
|
||||
echo "Usage: $0 start|stop|restart|status"
|
||||
echo "Usage: $0 start|stop|restart|down|status"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user