diff options
Diffstat (limited to 'net-dialup/rp-l2tp/files/rp-l2tpd-init')
-rw-r--r-- | net-dialup/rp-l2tp/files/rp-l2tpd-init | 20 |
1 files changed, 20 insertions, 0 deletions
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..a541255f5902 --- /dev/null +++ b/net-dialup/rp-l2tp/files/rp-l2tpd-init @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 $? +} |