diff options
author | Bryan Harris <bryanlharris@gmail.com> | 2016-08-09 07:11:31 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-08-09 07:12:34 +0700 |
commit | 834f25d46a309861fc6d478686c45a9bca1afaae (patch) | |
tree | f574c82dd5539ebb3fda770dfe0ecf001924eb5d /system/monit/rc.monit | |
parent | b4cd9f92c1ce41d9bab9503da98de5477316eee0 (diff) | |
download | slackbuilds-834f25d46a309861fc6d478686c45a9bca1afaae.tar.gz |
system/monit: Updated for version 5.19.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 b68e373eac..2bb7a1eafd 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 $? } |