aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nut/upsmon.initd
blob: 468e514111abbc24f7ec6324878ed68f8e854a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/sbin/openrc-run

name=nut-monitor
pidfile=/var/run/upsmon.pid
command=/usr/sbin/upsmon
required_files="/etc/nut/nut.conf /etc/nut/upsmon.conf"
extra_started_commands="reload"

depend() {
	use net
	. /etc/nut/nut.conf
	case $MODE in
	standalone|netserver)
		need nut-upsd
		;;
	esac
}

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 $?
}