diff options
author | bad <bad@pkgsrc.org> | 2007-09-29 21:46:33 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 2007-09-29 21:46:33 +0000 |
commit | c097ce83bb7183ffa0cb836d301d08a1393ed477 (patch) | |
tree | 9d6e33fe2929f7c282190d9532497b17b50eb24b /net/rp-pppoe | |
parent | 0dddb497e9465f0df6faee849a576849ee40e6e6 (diff) | |
download | pkgsrc-c097ce83bb7183ffa0cb836d301d08a1393ed477.tar.gz |
Call pppoe-{start,stop} instead of adsl-{start,stop} from pppoe.sh.
The latter have been replace by the former.
Bump PKGREVISION.
Diffstat (limited to 'net/rp-pppoe')
-rw-r--r-- | net/rp-pppoe/Makefile | 4 | ||||
-rwxr-xr-x | net/rp-pppoe/files/pppoe.sh | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/net/rp-pppoe/Makefile b/net/rp-pppoe/Makefile index 251d549d4e2..dc7af1a9869 100644 --- a/net/rp-pppoe/Makefile +++ b/net/rp-pppoe/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.36 2007/02/22 19:01:24 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2007/09/29 21:46:33 bad Exp $ DISTNAME= rp-pppoe-3.8 -# PKGREVISION= 0 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.roaringpenguin.com/files/download/ diff --git a/net/rp-pppoe/files/pppoe.sh b/net/rp-pppoe/files/pppoe.sh index c01921daf39..e563a15060f 100755 --- a/net/rp-pppoe/files/pppoe.sh +++ b/net/rp-pppoe/files/pppoe.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: pppoe.sh,v 1.3 2003/01/23 01:35:51 simonb Exp $ +# $NetBSD: pppoe.sh,v 1.4 2007/09/29 21:46:33 bad Exp $ # # PROVIDE: pppoe # REQUIRE: ipnat @@ -12,10 +12,10 @@ case $1 in start) . /etc/ppp/pppoe.conf ifconfig $ETH up - @PREFIX@/sbin/adsl-start + @PREFIX@/sbin/pppoe-start ;; stop) - @PREFIX@/sbin/adsl-stop + @PREFIX@/sbin/pppoe-stop . /etc/ppp/pppoe.conf ifconfig $ETH down ;; |