|
@@ -1,6 +1,6 @@
|
|
|
#!/bin/bash
|
|
|
|
|
|
-#Read parameters
|
|
|
+# Read parameters
|
|
|
echo "Please input the configuration file name"
|
|
|
read conf
|
|
|
echo "Please input the program"
|
|
@@ -14,25 +14,24 @@ read command
|
|
|
echo "Please input the directory"
|
|
|
read directory
|
|
|
|
|
|
-#Copy the configuration file in the supervisor.d folder
|
|
|
+# Copy the configuration file in the supervisor.d folder
|
|
|
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
|
|
|
+ cp server.conf $served/$conf
|
|
|
fi
|
|
|
|
|
|
-#替换变量
|
|
|
-
|
|
|
+# Variable substitution
|
|
|
sed -i "s#PROGRAM#$program#g" $served/$conf
|
|
|
sed -i "s#PROCESS_NAME#$process_name#g" $served/$conf
|
|
|
sed -i "s#USER#$user#g" $served/$conf
|
|
|
sed -i "s#DIRECTORY#$directory#g" $served/$conf
|
|
|
sed -i "s#COMMAND#$command#g" $served/$conf
|
|
|
|
|
|
-#重读supervisor配置文件
|
|
|
+# Reread supervisor's configuration file
|
|
|
supervisorctl update
|
|
|
|