freebsd-ports/dns/ez-ipupdate/files/ez-ipupdate.in

34 lines
629 B
Text
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: ez-ipupdate
# REQUIRE:
# BEFORE:
# KEYWORD: shutdown
# Add the following line to /etc/rc.conf to enable ez-ipupdate:
#
#ez_ipupdate_enable="YES"
#
. /etc/rc.subr
2004-07-27 01:13:03 +02:00
name=ez_ipupdate
rcvar=ez_ipupdate_enable
2004-07-27 01:13:03 +02:00
load_rc_config $name
: ${ez_ipupdate_enable="NO"}
: ${ez_ipupdate_pidfile="/var/run/ez-ipupdate.pid"}
: ${ez_ipupdate_configfile="%%PREFIX%%/etc/ez-ipupdate.conf"}
: ${ez_ipupdate_flags="-d -c $ez_ipupdate_configfile -F $ez_ipupdate_pidfile"}
2004-07-27 01:13:03 +02:00
command=%%PREFIX%%/bin/ez-ipupdate
pidfile=$ez_ipupdate_pidfile
required_files=$ez_ipupdate_configfile
sig_stop=QUIT
run_rc_command "$1"