0c5bb6abcc
script handling and using @RCD_SCRIPTS_SHELL@. as discussed with jlam.
34 lines
654 B
Bash
34 lines
654 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: upslog.sh,v 1.5 2002/09/20 02:02:01 grant Exp $
|
|
#
|
|
# PROVIDE: upslog
|
|
# REQUIRE: upsd
|
|
#
|
|
# You will need to set some variables in /etc/rc.conf to start upslog
|
|
# properly, e.g.
|
|
#
|
|
# upslog=YES
|
|
# upslog_flags="smartups@localhost /var/log/ups 60"
|
|
#
|
|
# Please refer to upslog(8) for more information about the arguments to pass
|
|
# to upslog.
|
|
|
|
if [ -f /etc/rc.subr ]
|
|
then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
name="upslog"
|
|
rcvar="${name}"
|
|
command="@PREFIX@/bin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
if [ -f /etc/rc.subr ]
|
|
then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
@ECHO@ -n " ${name}"
|
|
${command} ${upslog_flags} ${command_args}
|
|
fi
|