diff options
author | ghen <ghen@pkgsrc.org> | 2005-12-29 14:53:52 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2005-12-29 14:53:52 +0000 |
commit | e6c109b4dc9c5206331a81a988c6cae9f543b7e5 (patch) | |
tree | fea89c2ddcf4640df2f804f1231a6dbb60b105db /net/aiccu/files | |
parent | fc16dc362af4cbe79760eb57fce0d2a673e6e398 (diff) | |
download | pkgsrc-e6c109b4dc9c5206331a81a988c6cae9f543b7e5.tar.gz |
Import net/aiccu, ok'ed by wiz.
AICCU (Automatic IPv6 Connectivity Client Utility) makes it easy for users to
get IPv6 connectivity via SixXs. After having requested an account, tunnel and
optionally a subnet, AICCU can be used to automatically configure the tunnel.
AICCU supports TIC (Tunnel Information & Control protocol), which it uses for
retrieving the tunnel configuration information, AYIYA, which allows tunnels to
be created even behind firewalls and NATs.
Diffstat (limited to 'net/aiccu/files')
-rw-r--r-- | net/aiccu/files/aiccu.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/aiccu/files/aiccu.sh b/net/aiccu/files/aiccu.sh new file mode 100644 index 00000000000..512a8e5de5d --- /dev/null +++ b/net/aiccu/files/aiccu.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# +# $NetBSD: aiccu.sh,v 1.1.1.1 2005/12/29 14:53:52 ghen Exp $ +# + +# PROVIDE: aiccu +# REQUIRE: NETWORKING + +$_rc_subr_loaded . /etc/rc.subr + +name="aiccu" +rcvar=${name} +command="@PREFIX@/sbin/${name}" +required_files="@PKG_SYSCONFDIR@/${name}.conf" +command_args="start" +stop_command="${command} stop" + +load_rc_config $name +run_rc_command "$1" |