summaryrefslogtreecommitdiff
path: root/sysutils/ups-nut/files/upsd.sh
blob: b063fb4310f8c58e6fc027d24bba884f92bbf3e4 (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
#! /bin/sh
#
# $NetBSD: upsd.sh,v 1.1 2001/11/21 15:50:56 jlam Exp $
#
# PROVIDE: upsd
# REQUIRE: upsdriver

if [ -d /etc/rc.d -a -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 [ ! -d /etc/rc.d ]
then
	@ECHO@ -n " ${name}"
	${command} ${upsd_flags} ${command_args}
else
	load_rc_config $name
	run_rc_command "$1"
fi