From d2f29b1f886ad35e0c3c7665f1453fc5e5141ea8 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Thu, 16 May 2013 12:08:32 -0400 Subject: [PATCH] more informative message to user about new init.d script behaviour --- python_apps/pypo/airtime-liquidsoap-init-d | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python_apps/pypo/airtime-liquidsoap-init-d b/python_apps/pypo/airtime-liquidsoap-init-d index c3cfa6f57..e15972db4 100755 --- a/python_apps/pypo/airtime-liquidsoap-init-d +++ b/python_apps/pypo/airtime-liquidsoap-init-d @@ -62,11 +62,16 @@ stop_with_monit() { case "${1:-''}" in 'stop') + echo "* Stopping Liquidsoap without notifying Monit process watchdog. If Monit is +* running it will automatically bring the Liquidsoap back up. You probably want +* 'stop-with-monit' instead of 'stop'." echo -n "Stopping $NAME: " stop echo "Done." ;; 'start') + echo "* Starting $NAME without Monit process watchdog. To make sure Monit is watching +* Liquidsoap, use 'start-with-monit' instead of 'start'." echo -n "Starting $NAME: " start echo "Done."