diff options
Diffstat (limited to 'system/monit/rc.monit')
-rw-r--r-- | system/monit/rc.monit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/monit/rc.monit b/system/monit/rc.monit index b68e373eac2a..2bb7a1eafd52 100644 --- a/system/monit/rc.monit +++ b/system/monit/rc.monit @@ -24,7 +24,7 @@ start() { stop() { echo "Shutting down $desc ($prog)..." - monit quit + $prog -c $CONFIG quit return $? } @@ -40,7 +40,7 @@ reload() { } status() { - monit status + $prog -c $CONFIG status return $? } |