Standardize rc.d script

Bump PORTREVISION (missed in last update)
This commit is contained in:
Doug Barton 2010-09-24 07:07:26 +00:00
parent 697697fc40
commit ed7dd15603
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=261756
2 changed files with 13 additions and 7 deletions

View File

@ -8,6 +8,7 @@
PORTNAME= darkice
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= audio net
MASTER_SITES= GOOGLE_CODE

View File

@ -1,14 +1,18 @@
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: darkice
# REQUIRE: DAEMON
# BEFORE: LOGIN
# REQUIRE: LOGIN
# KEYWORD: SHUTDOWN
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# darkice_enable (bool): Set to NO by default.
# Set it to YES to enable darkice.
. "/etc/rc.subr"
. /etc/rc.subr
name="darkice"
rcvar=`set_rcvar`
@ -18,8 +22,9 @@ command_args="& 1>/dev/null"
required_files="%%ETCDIR%%.cfg"
# read configuration and set defaults
load_rc_config "$name"
load_rc_config $name
: ${darkice_enable="NO"}
: ${darkice_flags="-c ${required_files}"}
run_rc_command "$1"
run_rc_command $1