|
@@ -1,6 +1,6 @@
|
|
|
#!/bin/bash
|
|
|
|
|
|
-#Read service name you want to uninstall
|
|
|
+# Read service name you want to uninstall
|
|
|
echo "Please input the service you want to uninstall"
|
|
|
read conf
|
|
|
served="/etc/supervisord.d"
|
|
@@ -14,7 +14,7 @@ fi
|
|
|
echo "Are you sure uninstall ${conf}? y/n"
|
|
|
read flag
|
|
|
|
|
|
-#Make sure the input is y or n
|
|
|
+# Make sure the input is y or n
|
|
|
until [ "y" == ${flag} ] || [ "n" == ${flag} ]
|
|
|
do
|
|
|
echo "Please input y/n again"
|