41 lines
997 B
Bash
Executable file
41 lines
997 B
Bash
Executable file
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: dtcpc.sh,v 1.5 2011/10/07 22:37:04 shattered Exp $
|
|
#
|
|
|
|
# PROVIDE: dtcpc
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# NOTE for FreeBSD 5.0+:
|
|
# If you want this script to start with the base rc scripts
|
|
# move dtcpc.sh to /etc/rc.d/dtcpc
|
|
|
|
prefix=@PREFIX@
|
|
|
|
# Define these dtcpc_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/dtcpc
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
#dtcpc=${dtcpc_enable:-"NO"} # Enable dtcpc
|
|
#dtcpc_program="${prefix}/sbin/dtcpc" # Location of dtcpc
|
|
dtcpc_server=${dtcpc_server:-""} # DTCP server name
|
|
dtcpc_username=${dtcpc_username:-""} # DTCP user name
|
|
dtcpc_flags=${dtcpc_flags:-"-t network -Dl"} # Flags to dtcpc program
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dtcpc"
|
|
rcvar=$name
|
|
command="${prefix}/sbin/${name}"
|
|
command_interpreter="@RUBY@"
|
|
pidfile="/var/run/${name}.pid"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
command_args="-u ${dtcpc_username} ${dtcpc_server}"
|
|
run_rc_command "$1"
|