blob: 0656bc58a6e9cd51c0815991753d6817b5edfafe [file] [log] [blame]
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Id$
extra_started_commands="reload"
depend() {
use net
}
start() {
ebegin "Starting monit"
start-stop-daemon --start --quiet --exec /usr/bin/monit >/dev/null 2>&1
eend $?
}
stop() {
ebegin "Stopping monit"
start-stop-daemon --stop --quiet --exec /usr/bin/monit
eend $?
}
reload() {
ebegin "Reloading monit"
/usr/bin/monit -c /etc/monitrc reload >/dev/null 2>&1
eend $?
}