瀏覽代碼

modify 加上Tab键

Zhipeng 3 年之前
父節點
當前提交
655f89ca9d
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. 2 2
      supervisor/install.sh
  2. 2 2
      supervisor/uninstall.sh

+ 2 - 2
supervisor/install.sh

@@ -19,8 +19,8 @@ read directory
 served="/etc/supervisord.d"
 if [ -f "$served/$conf" ]
 then
-echo "The service has already existed"
-exit 1
+	echo "The service has already existed"
+	exit 1
 else
 # The first position is server.conf File installation directory
 cp server.conf $served/$conf

+ 2 - 2
supervisor/uninstall.sh

@@ -4,8 +4,8 @@ read conf
 served="/etc/supervisord.d"
 if [ ! -f "$served/$conf" ]
 then
-echo "The service is not existing"
-exit 1
+	echo "The service is not existing"
+	exit 1
 fi