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.
28 lines
566 B
Bash
28 lines
566 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: thundercache
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Remember to thundercache_enable="YES" in /etc/rc.conf
|
|
# You can also add optional flags to thundercache_flags
|
|
#
|
|
# FreeBSD Brasil LTDA <consultoria@freebsdbrasil.com.br>
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="thundercache"
|
|
rcvar=thundercache_enable
|
|
|
|
command="%%PREFIX%%/thunder/sbin/thunder"
|
|
required_files="%%PREFIX%%/thunder/etc/thunder.conf"
|
|
command_args="-c $required_files"
|
|
pidfile="/var/run/thunder/thunder.pid"
|
|
|
|
load_rc_config $name
|
|
: ${thundercache_enable="NO"}
|
|
|
|
run_rc_command "$1"
|