From cd44beb62d54837178511138806a107a151bd69d Mon Sep 17 00:00:00 2001 From: coincashew Date: Fri, 25 Oct 2024 20:32:52 -0300 Subject: [PATCH] Update reinstall node text --- ethpillar.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ethpillar.sh b/ethpillar.sh index 781ecb7..8bd0b2f 100755 --- a/ethpillar.sh +++ b/ethpillar.sh @@ -436,7 +436,7 @@ while true; do - "" 20 "Configure autostart" 21 "Uninstall node" - 22 "Change Network: Switch between Testnet/Mainnet" + 22 "Reinstall node: Change installation type, network" 23 "Override environment variables" - "" 99 "Back to main menu" @@ -508,10 +508,10 @@ while true; do runScript uninstall.sh ;; 22) - if whiptail --title "Switch Networks" --defaultno --yesno "Are you sure you want to switch networks?\nAll current node data will be removed." 9 78; then + if whiptail --title "Reinstall EthPillar" --defaultno --yesno "Are you sure you want to reinstall?\nAll current node data will be removed." 9 78; then if runScript uninstall.sh; then installNode - whiptail --title "Switch Networks" --msgbox "Completed network switching process." 8 78 + whiptail --title "Reinstall complete" --msgbox "Completed node reinstall process." 8 78 fi fi ;;