FIX: fix for parameter app-setting

This commit is contained in:
이수준 2023-10-23 14:54:07 +09:00
parent 125f7d118d
commit ae9c494375
2 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,12 @@
#!/bin/bash
if [ -z $1 ]; then
echo "Please fill in app's name."
if [ -z $1 ] || [ -z $2 ] || [ -z $3 ] ; then
echo "Please fill in app's name, exe's path, exe's file."
exit
fi
mv sdt-cloud-app.service $1.service
sudo sed -i "s/sdt-cloud-app/$1/g" ./install.sh
sudo sed -i "s/exePath/$2/g" ./install.sh
sudo sed -i "s/exeFile/$3/g" ./install.sh

View File

@ -2,7 +2,7 @@
Description=sdt-cloud-app
[Service]
ExecStart=/usr/bin/python3 /usr/local/sdt/app/appName/main.py -config appName
ExecStart=exePath /usr/local/sdt/app/appName/exeFile -config appName
Restart=always
RestartSec=10