|
@@ -1,6 +1,5 @@
|
|
#!/bin/bash
|
|
#!/bin/bash
|
|
|
|
|
|
-
|
|
|
|
#Read parameters
|
|
#Read parameters
|
|
echo "Please input the configuration file name"
|
|
echo "Please input the configuration file name"
|
|
read conf
|
|
read conf
|
|
@@ -19,8 +18,8 @@ read directory
|
|
served="/etc/supervisord.d"
|
|
served="/etc/supervisord.d"
|
|
if [ -f "$served/$conf" ]
|
|
if [ -f "$served/$conf" ]
|
|
then
|
|
then
|
|
-echo "The service has already existed"
|
|
|
|
-exit 1
|
|
|
|
|
|
+ echo "The service has already existed"
|
|
|
|
+ exit 1
|
|
else
|
|
else
|
|
# The first position is server.conf File installation directory
|
|
# The first position is server.conf File installation directory
|
|
cp server.conf $served/$conf
|
|
cp server.conf $served/$conf
|
|
@@ -34,7 +33,6 @@ sed -i "s#USER#$user#g" $served/$conf
|
|
sed -i "s#DIRECTORY#$directory#g" $served/$conf
|
|
sed -i "s#DIRECTORY#$directory#g" $served/$conf
|
|
sed -i "s#COMMAND#$command#g" $served/$conf
|
|
sed -i "s#COMMAND#$command#g" $served/$conf
|
|
|
|
|
|
-
|
|
|
|
#重读supervisor配置文件
|
|
#重读supervisor配置文件
|
|
supervisorctl update
|
|
supervisorctl update
|
|
|
|
|