66702080b0
operating systems. It includes functionnal implementations of all components of the Teredo specification (client, relay and server). It is meant to provide IPv6 connectivity even from behind NAT devices. WWW: http://www.simphalempin.com/dev/miredo/ Submitted by: Andreas Kohn via irc Approved by: krion (mentor)
26 lines
392 B
Bash
26 lines
392 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: isatapd
|
|
# REQUIRE: NETWORKING
|
|
# KEYWORD: FreeBSD shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable isatapd:
|
|
#
|
|
#isatapd_enable="YES"
|
|
#
|
|
isatapd_enable="${isatapd_enable-NO}"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=isatapd
|
|
rcvar=`set_rcvar`
|
|
|
|
command=%%PREFIX%%/sbin/${name}
|
|
required_files=%%PREFIX%%/etc/isatapd.conf
|
|
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|