Harmonize Service MSG-Blocks (#8233)

Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com>
This commit is contained in:
CanbiZ
2025-10-10 11:15:44 +02:00
committed by GitHub
parent f39b17ad7a
commit 4b5fc75ee1
47 changed files with 173 additions and 172 deletions

View File

@@ -29,18 +29,18 @@ function update_script() {
msg_error "No ${APP} Installation Found!"
exit
fi
msg_info "Stopping ${APP}"
msg_info "Stopping Service"
systemctl stop minarca-server
msg_ok "${APP} Stopped"
msg_ok "Stopped Service"
msg_info "Updating ${APP} LXC"
$STD apt-get update
$STD apt-get upgrade -y
msg_ok "Updated ${APP} LXC"
msg_info "Starting ${APP}"
msg_info "Starting Service"
systemctl start minarca-server
msg_ok "Restarted ${APP}"
msg_ok "Started Service"
exit
}