Skip to content

Commit

Permalink
Fix frontail remove prompt
Browse files Browse the repository at this point in the history
Fixes #1955

Signed-off-by: Ethan Dye <[email protected]>
  • Loading branch information
ecdye committed Jan 15, 2025
1 parent cd71194 commit 0953dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/nodejs-apps.bash
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ frontail_remove() {


if [[ -d $frontailBase ]] || [[ -d $frontailDir ]]; then
if (whiptail --title "Frontail Removal" --yes-button "Remove" --no-button "Keep" --defaultyes --scrolltext --yesno "$removeText" 27 84); then
if (whiptail --title "Frontail Removal" --yes-button "Remove" --no-button "Keep" --yesno "$removeText" 27 84); then
echo -n "$(timestamp) [openHABian] Removing openHAB Log Viewer frontail... "
if [[ $(systemctl is-active frontail.service) == "active" ]]; then
if ! cond_redirect systemctl stop frontail.service; then echo "FAILED (stop service)"; return 1; fi
Expand Down

0 comments on commit 0953dea

Please sign in to comment.