You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-power/nut/files/nut-2.6.5-init.d-upsmon

30 lines
557 B

#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
pidfile=/run/nut/upsmon.pid
bin=/usr/sbin/upsmon
depend() {
use net
}
start() {
ebegin "Starting upsmon"
start-stop-daemon --start --quiet --exec ${bin}
eend $?
}
stop() {
ebegin "Stopping upsmon"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend $?
}
reload() {
ebegin "Reloading upsmon"
start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile ${pidfile}
eend $?
}