Merge pull request #1428 from remz1337/pr-zitadel-fix

Zitadel with Login V2 - Minor fixes following code review
This commit is contained in:
CanbiZ (MickLesk)
2026-02-08 21:08:45 +01:00
committed by GitHub
2 changed files with 16 additions and 21 deletions

View File

@@ -30,7 +30,8 @@ function update_script() {
if check_for_gh_release "zitadel" "zitadel/zitadel"; then
msg_info "Stopping Service"
systemctl stop zitadel-api zitadel-login
systemctl stop zitadel-api
systemctl stop zitadel-login
msg_ok "Stopped Service"
msg_info "Updating Zitadel"
@@ -45,7 +46,9 @@ function update_script() {
msg_ok "Updated Zitadel"
msg_info "Starting Service"
systemctl start zitadel
systemctl start zitadel-api
sleep 5
systemctl start zitadel-login
msg_ok "Started Service"
msg_ok "Updated successfully!"
fi