From 93007cd56c61ff6bfa348acfedc84988701418c4 Mon Sep 17 00:00:00 2001 From: Donald Cheng Hong Zou Date: Thu, 2 Sep 2021 22:27:05 -0400 Subject: [PATCH] Update wgd.sh --- src/wgd.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wgd.sh b/src/wgd.sh index 08bc0aa..486a156 100755 --- a/src/wgd.sh +++ b/src/wgd.sh @@ -82,16 +82,16 @@ if [ "$#" != 1 ]; else if [ "$1" = "start" ]; then if check_wgd_status; then - printf "Wireguard Dashboard is already running. \n" + printf "| Wireguard Dashboard is already running. |\n" else start_wgd fi elif [ "$1" = "stop" ]; then if check_wgd_status; then stop_wgd - printf "Wireguard Dashboard is stopped. \n" + printf "| Wireguard Dashboard is stopped. |\n" else - printf "Wireguard Dashboard is not running. \n" + printf "| Wireguard Dashboard is not running. |\n" fi elif [ "$1" = "update" ]; then update_wgd @@ -101,14 +101,14 @@ if [ "$#" != 1 ]; if check_wgd_status; then stop_wgd sleep 2 - printf "Wireguard Dashboard is stopped. \n" + printf "| Wireguard Dashboard is stopped. |\n" start_wgd else start_wgd fi elif [ "$1" = "debug" ]; then if check_wgd_status; then - printf "Wireguard Dashboard is already running. \n" + printf "| Wireguard Dashboard is already running. |\n" else start_wgd_debug fi