fix: remove confusing switch-backend message (#20)

Removed the misleading "Both backends remain installed" line from the
switch_backend confirmation dialog. The remaining messages "Stop X"
and "Start Y" already clearly explain what happens.
This commit is contained in:
SamNet-dev
2026-02-04 18:25:19 -06:00
parent a92f4b4b03
commit 6bcb5341da

View File

@@ -5086,7 +5086,6 @@ switch_backend() {
echo " This will:" echo " This will:"
echo " - Stop ${current_backend}" echo " - Stop ${current_backend}"
echo " - Start ${new_backend}" echo " - Start ${new_backend}"
echo " - Both backends remain installed"
echo "" echo ""
read -p " Proceed? [y/N]: " confirm < /dev/tty || true read -p " Proceed? [y/N]: " confirm < /dev/tty || true
[[ "$confirm" =~ ^[Yy]$ ]] || { log_info "Cancelled"; return 0; } [[ "$confirm" =~ ^[Yy]$ ]] || { log_info "Cancelled"; return 0; }