freebsd-ports/net/gatekeeper/files/gnugk.sh.in
Doug Barton 83eb2c3700 In the rc.d scripts, change assignments to rcvar to use the
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.
2012-01-14 08:57:23 +00:00

41 lines
1.2 KiB
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: gnugk
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown
#
# Add to /etc/rc.conf to enable gnugk:
# gnugk_enable="YES"
#
# Additional options for /etc/rc.conf
# gnugk_user="the user that should run gnugk" (def: gnugk)
# gnugk_config"path to the config file to use" (def: /usr/local/etc/gnugk.ini)
# gnugk_logfile="path to the logfile to log to" (def: /var/log/gnugk/gnugk.log)
# gnugk_pidfile="path to the pidfile to use" (def: /var/run/gnugk/gnugk.pid)
# gnugk_flags="additional flags you need" (def: -t)
. /etc/rc.subr
name="gnugk"
rcvar=gnugk_enable
command="%%PREFIX%%/bin/${name}"
extra_commands="reload"
load_rc_config $name
gnugk_user=${gnugk_user:-${name}}
gnugk_config=${gnugk_config:-"%%PREFIX%%/etc/${name}.ini"}
gnugk_logfile=${gnugk_logfile:-"/var/log/${name}/${name}.log"}
gnugk_pidfile=${gnugk_pidfile:-"/var/run/${name}/${name}.pid"}
# use some defaults if no flags are specified in /etc/rc.conf
gnugk_flags=${gnugk_flags:-"-t"}
required_files=${gnugk_conf}
pidfile=${gnugk_pidfile}
command_args="-u ${gnugk_user} -c ${gnugk_config} -o ${gnugk_logfile} --pid ${pidfile} >/dev/null &"
run_rc_command "$1"