diff --git a/home.admin/config.scripts/cl.check.sh b/home.admin/config.scripts/cl.check.sh index ee813ca36..def3f1c11 100644 --- a/home.admin/config.scripts/cl.check.sh +++ b/home.admin/config.scripts/cl.check.sh @@ -2,9 +2,11 @@ # command info if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ "$1" = "-help" ]; then + echo echo "# script to check CL states" echo "# cl.check.sh basic-setup" echo "# cl.check.sh prestart [mainnet|testnet|signet]" + echo exit 1 fi diff --git a/home.admin/config.scripts/cl.update.sh b/home.admin/config.scripts/cl.update.sh index dfcdb72d8..3e516ea99 100644 --- a/home.admin/config.scripts/cl.update.sh +++ b/home.admin/config.scripts/cl.update.sh @@ -2,15 +2,17 @@ # command info if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then - echo "Interim optional C-lightning updates between RaspiBlitz releases." - echo "cl.update.sh [info|verified|reckless]" - echo "info -> get actual state and possible actions" - echo "verified -> only do recommended updates by RaspiBlitz team" - echo " binary will be checked by signature and checksum" - echo "reckless -> if you just want to update to the latest release" - echo " published on C-lightning GitHub releases (RC or final) without any" - echo " testing or security checks." - exit 1 + echo + echo "Interim optional C-lightning updates between RaspiBlitz releases." + echo "cl.update.sh [info|verified|reckless]" + echo "info -> get actual state and possible actions" + echo "verified -> only do recommended updates by RaspiBlitz team" + echo " binary will be checked by signature and checksum" + echo "reckless -> if you just want to update to the latest release" + echo " published on C-lightning GitHub releases (RC or final) without any" + echo " testing or security checks." + echo + exit 1 fi # 1. parameter [info|verified|reckless]