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.
31 lines
582 B
Bash
31 lines
582 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: rrdcached
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable rrdcached:
|
|
#
|
|
# rrdcached_enable (bool): Set to "NO" by default.
|
|
# Set to "YES" to enable rrdcached
|
|
#
|
|
# rrdcached_flags (str): Set to "" by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=rrdcached
|
|
rcvar=rrdcached_enable
|
|
|
|
load_rc_config $name
|
|
|
|
# Set defaults
|
|
: ${rrdcached_enable="NO"}
|
|
: ${rrdcached_flags="-s www -l /var/run/rrdcached.sock -p /var/run/rrdcached.pid"}
|
|
|
|
pidfile=/var/run/${name}.pid
|
|
command=%%PREFIX%%/bin/${name}
|
|
|
|
run_rc_command "$1"
|