From f356cfac70a40424c7454ec443c15c3940d50077 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 11 Jun 2018 15:00:14 -0600 Subject: [PATCH] update instructional output --- usr/share/install_helper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/share/install_helper.sh b/usr/share/install_helper.sh index 9fa1a43..8eb48fc 100644 --- a/usr/share/install_helper.sh +++ b/usr/share/install_helper.sh @@ -253,7 +253,7 @@ if [ "systemd" == "$my_system_launcher" ]; then echo "" echo " ${sudo_cmde}systemctl stop $my_app" echo " ${sudo_cmde}systemctl disable $my_app" - echo " $my_app --config $TELEBIT_PATH/etc/$my_app.yml" + echo " $my_daemon --config $TELEBIT_PATH/etc/$my_daemon.yml" elif [ "launchd" == "$my_system_launcher" ]; then @@ -267,7 +267,7 @@ elif [ "launchd" == "$my_system_launcher" ]; then echo "Or disabled the service and start manually:" echo "" echo " ${sudo_cmde}launchctl unload -w $my_root/$my_app_launchd_service" - echo " $my_app daemon --config $TELEBIT_PATH/etc/$my_app.yml" + echo " $my_daemon --config $TELEBIT_PATH/etc/$my_daemon.yml" else @@ -278,7 +278,7 @@ else echo "" echo "Run the service manually (we couldn't detect your system service to do that automatically):" echo "" - echo " $my_app --config $my_config" + echo " $my_daemon --config $my_config" fi