diff options
author | ume <ume@FreeBSD.org> | 2004-04-20 02:40:52 +0800 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2004-04-20 02:40:52 +0800 |
commit | 35c83f0680d26cd9f959590056fd00d1f2b2f47a (patch) | |
tree | 6da08098bcbd1d6a0ae3bdc147fac3fefea66a90 /net/dtcp/files | |
parent | 43f68322f5fd96be52d36bed55e3a4d0fb9bb244 (diff) | |
download | freebsd-ports-gnome-35c83f0680d26cd9f959590056fd00d1f2b2f47a.tar.gz freebsd-ports-gnome-35c83f0680d26cd9f959590056fd00d1f2b2f47a.tar.zst freebsd-ports-gnome-35c83f0680d26cd9f959590056fd00d1f2b2f47a.zip |
Use USE_RC_SUBR.
Diffstat (limited to 'net/dtcp/files')
-rw-r--r-- | net/dtcp/files/dtcpc.sh | 41 | ||||
-rw-r--r-- | net/dtcp/files/dtcps.sh | 63 |
2 files changed, 104 insertions, 0 deletions
diff --git a/net/dtcp/files/dtcpc.sh b/net/dtcp/files/dtcpc.sh new file mode 100644 index 000000000000..2c814e6e1e9e --- /dev/null +++ b/net/dtcp/files/dtcpc.sh @@ -0,0 +1,41 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: dtcpc +# 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 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_enable=${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 + +. %%RC_SUBR%% + +name="dtcpc" +rcvar=`set_rcvar` +command="${prefix}/sbin/${name}" +command_interpreter="%%RUBY%%" +pidfile="/var/run/${name}.pid" +extra_commands="reload" + +load_rc_config $name +flags="${dtcpc_flags} -u ${dtcpc_username} ${dtcpc_server}" +run_rc_command "$1" diff --git a/net/dtcp/files/dtcps.sh b/net/dtcp/files/dtcps.sh new file mode 100644 index 000000000000..47978983f9a5 --- /dev/null +++ b/net/dtcp/files/dtcps.sh @@ -0,0 +1,63 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: dtcps +# 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 dtcps.sh to /etc/rc.d/dtcps + +prefix=%%PREFIX%% + +# Define these dtcps_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/dtcps +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +dtcps_enable=${dtcps_enable:-"NO"} # Enable dtcps +#dtcps_program="${prefix}/sbin/dtcps" # Location of dtcps +dtcps_tunif=${dtcps_tunif:-""} # tunnel interface +dtcps_prefix=${dtcps_prefix:-""} # prefix for host tunnel type +dtcps_flags=${dtcps_flags:-""} # Flags to dtcps program + +# interface cloning example +#dtcps_tunif='gif70' + +# static allocation example +#dtcps_unit_min=70 +#dtcps_unit_max=79 +#dtcps_tunif='gif7[0-9]' + +# prefix for host tunnel type. +# YOU MUST CHANGE TO ASSIGN THIS WITHIN YOUR ADDRESS BLOCK. +#dtcps_prefix='3ffe:501:185b:8000::' + +. %%RC_SUBR%% + +name="dtcps" +rcvar=`set_rcvar` +command="${prefix}/sbin/${name}" +command_interpreter="%%RUBY%%" +pidfile="/var/run/${name}.pid" +start_precmd="dtcps_prestart" + +dtcps_prestart() { + if [ -n "${dtcps_unit_min}" -a -n "${dtcps_unit_max}" ]; then + unit=${dtcps_unit_min} + while [ ${unit} -le ${dtcps_unit_max} ]; do + ifconfig gif${unit} create >/dev/null 2>&1 + unit=$((${unit}+1)) + done + fi +} + +load_rc_config $name +flags="-i ${dtcps_tunif} ${dtcps_flags} ${dtcps_prefix}" +run_rc_command "$1" |