diff options
Diffstat (limited to 'sys-power/nut/files/nut-2.2.2-init.d-upsmon')
-rw-r--r-- | sys-power/nut/files/nut-2.2.2-init.d-upsmon | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sys-power/nut/files/nut-2.2.2-init.d-upsmon b/sys-power/nut/files/nut-2.2.2-init.d-upsmon deleted file mode 100644 index 079255dca644..000000000000 --- a/sys-power/nut/files/nut-2.2.2-init.d-upsmon +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -extra_started_commands="reload" - -pidfile=/var/run/upsmon.pid -bin=/usr/sbin/upsmon - -depend() { - need 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 upsd" - start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile ${pidfile} - eend $? -} |