ports/sysutils/nut/files/nut_upslog.in
Cy Schubert 64a44f199e Move default log location so it can be rotated without root privileges.
Add syslog.conf and newsyslog.conf files for installation into their
respective .d directories in $PREFIX.

Allow upslog log format to be customized.

PR:		236700
Submitted by:	Daniel O'Connor <darius@dons.net.au> (90%)
2019-03-23 19:34:07 +00:00

37 lines
955 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: nut_upslog
# REQUIRE: NETWORKING nut
# BEFORE: LOGIN
# KEYWORD: shutdown
# Define these nut_upslog* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
# /etc/rc.conf.d/nut_upslog
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
nut_upslog_enable=${nut_upslog_enable:-"NO"}
nut_upslog_prefix=${nut_upslog_prefix:-"%%PREFIX%%"}
nut_upslog_logfile=${nut_upslog_logfile:-"/var/log/nut/ups.log"}
nut_upslog_interval=${nut_upslog_interval:-"300"}
nut_upslog_ups=${nut_upslog_ups:-"myups@localhost"}
# nut_upslog_format
. /etc/rc.subr
name="nut_upslog"
rcvar=nut_upslog_enable
load_rc_config $name
required_dirs="%%STATEDIR%%"
command="${nut_upslog_prefix}/bin/upslog"
pidfile="%%STATEDIR%%/upslog.pid"
nut_upslog_flags=${nut_upslog_flags:-"-s ${nut_upslog_ups} -l ${nut_upslog_logfile} -i ${nut_upslog_interval} ${nut_upslog_format:+-f \"${nut_upslog_format}\"}"}
run_rc_command "$1"