83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
35 lines
688 B
Bash
35 lines
688 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: downtimed
|
|
# REQUIRE: LOGIN syslogd
|
|
# KEYWORD: shutdown
|
|
|
|
# This file should be installed as %%PREFIX%%/etc/rc.d/downtimed
|
|
#
|
|
# Define downtimed_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/downtimed
|
|
#
|
|
# Add the following line to enable:
|
|
# downtimed_enable="YES"
|
|
#
|
|
# Add the following line to change the default options, see downtimed(8):
|
|
# downtimed_flags="<set as needed>"
|
|
#
|
|
# DO NOT CHANGE THE DEFAULT VALUES BELOW
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="downtimed"
|
|
rcvar=downtimed_enable
|
|
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
load_rc_config "$name"
|
|
|
|
: ${downtimed_enable="NO"}
|
|
|
|
run_rc_command "$1"
|