From a3d9ea75302b40ececf80f98a216cfc151aad6e4 Mon Sep 17 00:00:00 2001 From: Daniel Bates Date: Sat, 21 Feb 2026 00:10:22 -0800 Subject: [PATCH] Fix #12066: PLANKA: fix msg_info/msg_ok inconsistencies in update script (#12143) Co-authored-by: Your Name Co-authored-by: Claude Sonnet 4.6 --- ct/planka.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/planka.sh b/ct/planka.sh index bdfe5c686..43375241e 100644 --- a/ct/planka.sh +++ b/ct/planka.sh @@ -31,7 +31,7 @@ function update_script() { if check_for_gh_release "planka" "plankanban/planka"; then msg_info "Stopping Service" systemctl stop planka - msg_info "Stopped Service" + msg_ok "Stopped Service" msg_info "Backing up data" BK="/opt/planka-backup" @@ -70,7 +70,7 @@ function update_script() { rm -rf "$BK" msg_ok "Restored data" - msg_ok "Migrate Database" + msg_info "Migrate Database" cd /opt/planka $STD npm run db:upgrade $STD npm run db:migrate