diff options
author | 2003-11-17 19:56:52 +0000 | |
---|---|---|
committer | 2003-11-17 19:56:52 +0000 | |
commit | e2bdde1312911d30baad69386b2ef14f2c6651a7 (patch) | |
tree | 65af3c6a81d8f6142e978b80ffdcf3b9f3348d9c /net-dialup/rp-l2tp/files | |
parent | moved l2tpd from net-misc to net-dialup (diff) | |
download | gentoo-2-e2bdde1312911d30baad69386b2ef14f2c6651a7.tar.gz gentoo-2-e2bdde1312911d30baad69386b2ef14f2c6651a7.tar.bz2 gentoo-2-e2bdde1312911d30baad69386b2ef14f2c6651a7.zip |
moved rp-l2tp from net-misc to net-dialup
Diffstat (limited to 'net-dialup/rp-l2tp/files')
-rw-r--r-- | net-dialup/rp-l2tp/files/digest-rp-l2tp-0.3-r1 | 2 | ||||
-rw-r--r-- | net-dialup/rp-l2tp/files/rp-l2tpd-init | 20 |
2 files changed, 22 insertions, 0 deletions
diff --git a/net-dialup/rp-l2tp/files/digest-rp-l2tp-0.3-r1 b/net-dialup/rp-l2tp/files/digest-rp-l2tp-0.3-r1 new file mode 100644 index 000000000000..a19a2ea96a0f --- /dev/null +++ b/net-dialup/rp-l2tp/files/digest-rp-l2tp-0.3-r1 @@ -0,0 +1,2 @@ +MD5 a8a7eb3ce8bb27af6ba280fd521c97cf rp-l2tp-0.3.tar.gz 191418 +MD5 c025352b143bff26f2dab2aa151066f1 rp-l2tp-0.3-gentoo.diff.bz2 3117 diff --git a/net-dialup/rp-l2tp/files/rp-l2tpd-init b/net-dialup/rp-l2tp/files/rp-l2tpd-init new file mode 100644 index 000000000000..6f0da0b0930b --- /dev/null +++ b/net-dialup/rp-l2tp/files/rp-l2tpd-init @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-l2tp/files/rp-l2tpd-init,v 1.1 2003/11/17 19:56:46 lanius Exp $ + +depend() { + need net +} + +start() { + ebegin "Starting rp-l2tpd" + start-stop-daemon --start --quiet --exec /usr/sbin/rp-l2tpd + eend $? +} + +stop() { + ebegin "Stopping rp-l2tpd" + start-stop-daemon --stop --quiet --exec /usr/sbin/rp-l2tpd + eend $? +} |