mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 04:30:37 -04:00
31 lines
861 B
Bash
31 lines
861 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: dtcpclient
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Define these dtcpclient_* 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
|
|
#
|
|
dtcpclient_enable=${dtcpclient_enable:-"NO"} # Enable dtcpclient
|
|
#dtcpclient_program="%%PREFIX%%/sbin/dtcpclient" # Location of dtcpclient
|
|
dtcpclient_server=${dtcpclient_server:-""} # DTCP server name
|
|
dtcpclient_username=${dtcpclient_username:-""} # DTCP user name
|
|
dtcpclient_flags=${dtcpclient_flags:-"-t network -Dl"} # Flags to dtcpclient program
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dtcpclient"
|
|
rcvar=dtcpclient_enable
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
command_args="-u ${dtcpclient_username} ${dtcpclient_server}"
|
|
run_rc_command "$1"
|