diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-02 05:35:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-02 05:35:14 +0000 |
commit | 64ffc2410711b6f059129e7e4818fcb146336219 (patch) | |
tree | f6445f490bde3f6a570b3e24583961f80b9f6291 /net-dialup | |
parent | IUSE (diff) | |
download | historical-64ffc2410711b6f059129e7e4818fcb146336219.tar.gz historical-64ffc2410711b6f059129e7e4818fcb146336219.tar.bz2 historical-64ffc2410711b6f059129e7e4818fcb146336219.zip |
fix retarted whitespacing
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/rp-pppoe/files/rp-pppoe.rc | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/net-dialup/rp-pppoe/files/rp-pppoe.rc b/net-dialup/rp-pppoe/files/rp-pppoe.rc index bf1031c9b6b6..0b0e7dbcef89 100644 --- a/net-dialup/rp-pppoe/files/rp-pppoe.rc +++ b/net-dialup/rp-pppoe/files/rp-pppoe.rc @@ -1,20 +1,21 @@ -#!/sbin/runscript -# This init script controls the pppoe connection for adsl lines. -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net - after domainname -} - -start() { - ebegin "Starting adsl" - start-stop-daemon --start --quiet --exec /usr/sbin/adsl-start - eend $? -} - -stop() { - ebegin "Stopping adsl" - start-stop-daemon --start --quiet --exec /usr/sbin/adsl-stop - eend $? +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-pppoe/files/rp-pppoe.rc,v 1.4 2004/05/02 05:35:14 vapier Exp $ + +depend() { + need net + after domainname +} + +start() { + ebegin "Starting adsl" + start-stop-daemon --start --quiet --exec /usr/sbin/adsl-start + eend $? +} + +stop() { + ebegin "Stopping adsl" + start-stop-daemon --start --quiet --exec /usr/sbin/adsl-stop + eend $? } |