Update tianji.sh

switch to `systemd`
pull/3885/head
tteckster 2024-10-10 09:50:54 -04:00 committed by GitHub
parent 4c83a790ac
commit 36805ae6bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ RELEASE=$(curl -s https://api.github.com/repos/msgbyte/tianji/releases/latest |
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
msg_info "Stopping ${APP} Service"
pm2 stop tianji >/dev/null 2>&1
systemctl stop tianji
msg_ok "Stopped ${APP} Service"
msg_info "Updating ${APP} to ${RELEASE}"
@ -75,7 +75,7 @@ if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_v
msg_ok "Updated ${APP} to ${RELEASE}"
msg_info "Starting ${APP}"
pm2 start tianji >/dev/null 2>&1
systemctl start tianji
msg_ok "Started ${APP}"
msg_ok "Updated Successfully"
else