diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-04 19:14:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-04 19:14:02 +0000 |
commit | 755148bc0b529d36726c383828049bd8a18810ad (patch) | |
tree | 99251c9428d414dcf5eafcf4e7e80db8c2a57f22 /net-dialup | |
parent | Version bumped. Marked 2.0.38 stable for x86 (diff) | |
download | historical-755148bc0b529d36726c383828049bd8a18810ad.tar.gz historical-755148bc0b529d36726c383828049bd8a18810ad.tar.bz2 historical-755148bc0b529d36726c383828049bd8a18810ad.zip |
gpl2, forget the later
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/bpalogin/files/bpalogin.rc | 18 | ||||
-rw-r--r-- | net-dialup/capi4k-utils/files/capi | 33 | ||||
-rw-r--r-- | net-dialup/capisuite/files/capisuite | 6 | ||||
-rw-r--r-- | net-dialup/cistronradius/files/cistronradius.rc | 4 | ||||
-rw-r--r-- | net-dialup/diald/files/diald-init | 6 | ||||
-rw-r--r-- | net-dialup/dwun/files/dwun | 5 | ||||
-rw-r--r-- | net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init | 6 | ||||
-rw-r--r-- | net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0 | 6 | ||||
-rw-r--r-- | net-dialup/isdn4k-utils/files/local.start | 8 | ||||
-rw-r--r-- | net-dialup/mserver/files/mserver-init | 6 | ||||
-rw-r--r-- | net-dialup/speedtouch/files/adsl.sample | 5 | ||||
-rw-r--r-- | net-dialup/speedtouch/files/speedtouch.confd | 5 | ||||
-rw-r--r-- | net-dialup/speedtouch/files/speedtouch.rc6 | 5 |
13 files changed, 55 insertions, 58 deletions
diff --git a/net-dialup/bpalogin/files/bpalogin.rc b/net-dialup/bpalogin/files/bpalogin.rc index f7d8da286d27..a3ba1b9ae2ae 100644 --- a/net-dialup/bpalogin/files/bpalogin.rc +++ b/net-dialup/bpalogin/files/bpalogin.rc @@ -1,18 +1,20 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/bpalogin/files/bpalogin.rc,v 1.1 2003/11/23 09:22:46 lanius Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/bpalogin/files/bpalogin.rc,v 1.2 2004/03/04 19:07:18 vapier Exp $ depend() { - need net + need net } start() { - /usr/sbin/bpalogin -c /etc/bpalogin.conf - eend $? + ebegin "Starting bpalogin" + /usr/sbin/bpalogin -c /etc/bpalogin.conf + eend $? } stop() { - killall -9 bpalogin - eend $? + ebegin "Stopping bpalogin" + killall -9 bpalogin + eend $? } diff --git a/net-dialup/capi4k-utils/files/capi b/net-dialup/capi4k-utils/files/capi index 6348dbf7166d..e98db26cd178 100644 --- a/net-dialup/capi4k-utils/files/capi +++ b/net-dialup/capi4k-utils/files/capi @@ -1,30 +1,23 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/files/capi,v 1.2 2003/02/14 22:58:24 vapier Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/files/capi,v 1.3 2004/03/04 19:08:22 vapier Exp $ depend() { - - after isapnp - + after isapnp } start() { - - [ -e /etc/capi.conf ] || { - eerror "You're missing /etc/capi.conf (comes with a capi-driver)." - eerror "Emerge net-dialup/fcpci if you are having an AVM Fritz!Card PCI" - return 1 - } - /sbin/capiinit start - eend 0 - + if [ ! -e /etc/capi.conf ] ; then + eerror "You're missing /etc/capi.conf (comes with a capi-driver)." + eerror "Emerge net-dialup/fcpci if you are having an AVM Fritz!Card PCI" + return 1 + fi + /sbin/capiinit start + eend 0 } stop() { - - /sbin/capiinit stop - eend $? - + /sbin/capiinit stop + eend $? } - diff --git a/net-dialup/capisuite/files/capisuite b/net-dialup/capisuite/files/capisuite index f808f9a61426..e36c2338761b 100644 --- a/net-dialup/capisuite/files/capisuite +++ b/net-dialup/capisuite/files/capisuite @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/files/capisuite,v 1.1 2003/11/27 15:42:44 brandy Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capisuite/files/capisuite,v 1.2 2004/03/04 19:08:42 vapier Exp $ depend() { need capi diff --git a/net-dialup/cistronradius/files/cistronradius.rc b/net-dialup/cistronradius/files/cistronradius.rc index 9d1ba3792708..577a3c244eab 100644 --- a/net-dialup/cistronradius/files/cistronradius.rc +++ b/net-dialup/cistronradius/files/cistronradius.rc @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later - +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/cistronradius/files/cistronradius.rc,v 1.3 2004/03/04 19:10:18 vapier Exp $ depend() { need net diff --git a/net-dialup/diald/files/diald-init b/net-dialup/diald/files/diald-init index 4d32c1461dc3..8cbe64a81e76 100644 --- a/net-dialup/diald/files/diald-init +++ b/net-dialup/diald/files/diald-init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/files/diald-init,v 1.2 2003/02/14 22:58:28 vapier Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/diald/files/diald-init,v 1.3 2004/03/04 19:10:18 vapier Exp $ depend() { need net diff --git a/net-dialup/dwun/files/dwun b/net-dialup/dwun/files/dwun index 1a54ea317d6f..e8eaba559c07 100644 --- a/net-dialup/dwun/files/dwun +++ b/net-dialup/dwun/files/dwun @@ -1,6 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/dwun/files/dwun,v 1.2 2004/03/04 19:10:18 vapier Exp $ depend() { need net diff --git a/net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init b/net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init index 9f28a42fae84..7cdf3e2e33a9 100644 --- a/net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init +++ b/net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init,v 1.3 2003/10/30 16:28:00 lanius Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/3.2_p1-r2/isdn4linux.init,v 1.4 2004/03/04 19:11:13 vapier Exp $ depend() { use pcmcia diff --git a/net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0 b/net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0 index 7fb5e456983b..2006ea4e14d6 100644 --- a/net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0 +++ b/net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0 @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0,v 1.2 2003/02/14 22:58:40 vapier Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/3.2_p1-r2/net.ippp0,v 1.3 2004/03/04 19:11:13 vapier Exp $ #NB: Config is in /etc/conf.d/net diff --git a/net-dialup/isdn4k-utils/files/local.start b/net-dialup/isdn4k-utils/files/local.start index 0d9340428476..adbd8cc2142c 100644 --- a/net-dialup/isdn4k-utils/files/local.start +++ b/net-dialup/isdn4k-utils/files/local.start @@ -1,15 +1,13 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/local.start,v 1.1 2002/08/09 00:28:34 verwilst Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/local.start,v 1.2 2004/03/04 19:11:32 vapier Exp $ # This is a good place to load any misc. # programs on startup ( 1>&2 ) - echo " - Starte ISDN+Kisdnmon services" /usr/sbin/isdnctrl verbose 3 /usr/sbin/hisaxctrl 0 1 4 # /usr/sbin/isdninfo # <-- this for kisdnmon !! # /usr/sbin/i4lmond2 # <-- this for kisdnmon !! /sbin/isdnlog -f/etc/isdn/isdnlog.isdnctrl0.options /dev/isdn/isdnctrl -D -
\ No newline at end of file diff --git a/net-dialup/mserver/files/mserver-init b/net-dialup/mserver/files/mserver-init index f3c7dc88532d..54d94dd6bd0f 100644 --- a/net-dialup/mserver/files/mserver-init +++ b/net-dialup/mserver/files/mserver-init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dialup/mserver/files/mserver-init,v 1.2 2003/02/14 22:58:45 vapier Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mserver/files/mserver-init,v 1.3 2004/03/04 19:11:53 vapier Exp $ depend() { need net diff --git a/net-dialup/speedtouch/files/adsl.sample b/net-dialup/speedtouch/files/adsl.sample index 468faac6e5cc..3cbf36a5c6fe 100644 --- a/net-dialup/speedtouch/files/adsl.sample +++ b/net-dialup/speedtouch/files/adsl.sample @@ -1,5 +1,6 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/speedtouch/files/adsl.sample,v 1.2 2004/03/04 19:12:20 vapier Exp $ # This file could be rename but its place is under /etc/ppp/peers # To connect to Internet using this configuration file diff --git a/net-dialup/speedtouch/files/speedtouch.confd b/net-dialup/speedtouch/files/speedtouch.confd index 62a94f0f1329..501edf3eab02 100644 --- a/net-dialup/speedtouch/files/speedtouch.confd +++ b/net-dialup/speedtouch/files/speedtouch.confd @@ -1,5 +1,6 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/speedtouch/files/speedtouch.confd,v 1.3 2004/03/04 19:13:39 vapier Exp $ # Config file for the speedtouch ebuild diff --git a/net-dialup/speedtouch/files/speedtouch.rc6 b/net-dialup/speedtouch/files/speedtouch.rc6 index fbf103ce5f37..51a9f8eb0058 100644 --- a/net-dialup/speedtouch/files/speedtouch.rc6 +++ b/net-dialup/speedtouch/files/speedtouch.rc6 @@ -1,6 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/speedtouch/files/speedtouch.rc6,v 1.4 2004/03/04 19:14:02 vapier Exp $ PPP=$(which pppd) MODEM_RUN=$(which modem_run) |