freebsd-ports/sysutils/nut-devel/files/nut.in
Cy Schubert 8a2664421b sysutils/nut: Guarantee that devfs is started
devfs does not always win the race with nut causing nut to fail to
start in some installations.

PR:		258190
Submitted by:	hsakamt@tsnr.com
Reported by:	hsakamt@tsnr.com
2021-08-31 21:01:57 -07:00

53 lines
1,022 B
Bash

#!/bin/sh
# PROVIDE: nut
# REQUIRE: NETWORKING devfs
# BEFORE: LOGIN
# KEYWORD: shutdown
# Define these nut_* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
# /etc/rc.conf.d/nut
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
nut_enable=${nut_enable:-"NO"}
nut_prefix=${nut_prefix:-"%%PREFIX%%"}
nut_upsshut=${nut_upsshut:-"NO"}
. /etc/rc.subr
name="nut"
rcvar=nut_enable
load_rc_config $name
required_dirs="%%STATEDIR%%"
required_files="${nut_prefix}/etc/nut/ups.conf ${nut_prefix}/etc/nut/upsd.conf ${nut_prefix}/etc/nut/upsd.users"
command="${nut_prefix}/sbin/upsd"
pidfile="%%STATEDIR%%/upsd.pid"
start_precmd="nut_prestart"
stop_postcmd="nut_poststop"
nut_prestart() {
${nut_prefix}/sbin/upsdrvctl start
}
nut_poststop() {
if ${nut_prefix}/sbin/upsdrvctl stop && checkyesno nut_upsshut; then
if ${nut_prefix}/sbin/upsmon -K; then
${nut_prefix}/sbin/upsdrvctl shutdown
fi
fi
}
extra_commands=reload
reload()
{
kill -HUP `cat $pidfile`
}
run_rc_command "$1"