From 892e2c2cf1edf6db1033241032fcaf41ad58ef6c Mon Sep 17 00:00:00 2001 From: Gerhard Salvini Date: Thu, 18 Jul 2024 12:56:42 +0200 Subject: [PATCH] Removed misleading text from stop.sh This command no longer disables the Bridgehead in systemctl, it only stops it. --- run.sh | 1 + stop.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index a039fdd..7a341fc 100755 --- a/run.sh +++ b/run.sh @@ -80,3 +80,4 @@ sudo systemctl start ecdc.service # Show status of Bridgehead service sleep 10 systemctl status ecdc.service + diff --git a/stop.sh b/stop.sh index b02db90..4c6642f 100755 --- a/stop.sh +++ b/stop.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash -# Shut down a running Bridgehead and disable auto restart. +# Shut down a running Bridgehead. # Behind the scenes we use systemctl to do the work. # Function to print usage print_usage() { - echo "Stop the running Bridgehead, disable auto-restart" + echo "Stop the running Bridgehead" echo "Usage: $0 [--help | -h]" echo "Options:" echo " --help, -h Display this help message."