pkgsrc/sysutils/ups-nut/files/upsd.sh
fredb 792b06e890 Add "shutdown" keyword to a couple of the daemons, so they're down before
the SIGHUP to all process causes them to reload their config files.
2003-01-26 00:48:24 +00:00

27 lines
470 B
Bash

#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: upsd.sh,v 1.6 2003/01/26 00:48:24 fredb Exp $
#
# PROVIDE: upsd
# REQUIRE: upsdriver
# KEYWORD: shutdown
if [ -f /etc/rc.subr ]
then
. /etc/rc.subr
fi
name="upsd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
required_files="@NUT_CONFDIR@/${name}.conf"
pidfile="@NUT_STATEDIR@/${name}.pid"
if [ -f /etc/rc.subr ]
then
load_rc_config $name
run_rc_command "$1"
else
@ECHO@ -n " ${name}"
${command} ${upsd_flags} ${command_args}
fi