#!/bin/sh
#
# $NetBSD: upsmon.sh,v 1.9 2023/01/08 01:14:23 gdt Exp $
#
# PROVIDE: upsmon
# REQUIRE: upsd
# BEFORE: SERVERS
# KEYWORD: shutdown

if [ -f /etc/rc.subr ]; then
	. /etc/rc.subr
fi

name="upsmon"
rcvar="${name}"
command="/usr/pkg/sbin/${name}"
pidfile="/var/db/nut/${name}.pid"
required_files="/usr/pkg/etc/nut/${name}.conf"

if [ -f /etc/rc.subr ]; then
	load_rc_config $name
	run_rc_command "$1"
else
	echo -n " ${name}"
	${command} ${upsmon_flags} ${command_args}
fi
