update instructional output

This commit is contained in:
AJ ONeal 2018-06-11 15:00:14 -06:00
parent cd37449e97
commit f356cfac70
1 changed files with 3 additions and 3 deletions

View File

@ -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