aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nut/upsmon.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/nut/upsmon.initd')
-rw-r--r--testing/nut/upsmon.initd35
1 files changed, 0 insertions, 35 deletions
diff --git a/testing/nut/upsmon.initd b/testing/nut/upsmon.initd
deleted file mode 100644
index 4a7efe8ba44..00000000000
--- a/testing/nut/upsmon.initd
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/sbin/openrc-run
-
-name="UPS Monitor"
-pidfile=/run/upsmon.pid
-command=/usr/sbin/upsmon
-required_files="/etc/nut/nut.conf /etc/nut/upsmon.conf"
-extra_started_commands="reload"
-start_stop_daemon_args="--quiet"
-
-depend() {
- . /etc/nut/nut.conf
- case $MODE in
- standalone|netserver)
- need nut-upsd
- ;;
- esac
- use net dns
-}
-
-start_pre() {
- . /etc/nut/nut.conf
- case $MODE in
- none)
- eerror "$name disabled, please adjust the configuration to your needs"
- eerror "Then set MODE to a suitable value in /etc/nut/nut.conf to enable it"
- return 1
- ;;
- esac
-}
-
-reload() {
- ebegin "Reloading $name"
- start-stop-daemon --signal HUP --pidfile $pidfile
- eend $?
-}