freebsd-ports/net/dtcpclient/files/dtcpclient.sh

40 lines
1 KiB
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: dtcpclient
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: FreeBSD shutdown
#
# NOTE for FreeBSD 5.0+:
# If you want this script to start with the base rc scripts
# move imapd.sh to /etc/rc.d/dtcpclient
prefix=%%PREFIX%%
# Define these imapd_* variables in one of these files:
# /etc/rc.conf
# /etc/rc.conf.local
# /etc/rc.conf.d/dtcpclient
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#
[ -z "$dtcpclient_enable" ] && dtcpclient_enable="NO" # Enable dtcpclient
#dtcpclient_program="${prefix}/sbin/dtcpclient" # Location of dtcpclient
[ -z "$dtcpclient_server" ] && dtcpclient_server="" # DTCP server name
[ -z "$dtcpclient_username" ] && dtcpclient_username="" # DTCP user name
[ -z "$dtcpclient_flags" ] && dtcpclient_flags="-t network -Dl" # Flags to dtcpclient program
. %%RC_SUBR%%
name="dtcpclient"
rcvar=`set_rcvar`
command="${prefix}/sbin/${name}"
pidfile="/var/run/${name}.pid"
extra_commands="reload"
load_rc_config $name
flags="${dtcpclient_flags} -u ${dtcpclient_username} ${dtcpclient_server}"
run_rc_command "$1"