forked from pool/rp-pppoe
Accepting request 173382 from network
upgrade to 3.11 (forwarded request 173008 from BinLi) OBS-URL: https://build.opensuse.org/request/show/173382 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rp-pppoe?expand=0&rev=16
This commit is contained in:
commit
ae6818b6dd
@ -1,6 +1,8 @@
|
|||||||
--- src/Makefile.in
|
Index: src/Makefile.in
|
||||||
|
===================================================================
|
||||||
|
--- src/Makefile.in.orig
|
||||||
+++ src/Makefile.in
|
+++ src/Makefile.in
|
||||||
@@ -194,11 +194,9 @@
|
@@ -195,11 +195,9 @@ install: all
|
||||||
mkdir -p $(DESTDIR)/etc/rc.d/init.d ;\
|
mkdir -p $(DESTDIR)/etc/rc.d/init.d ;\
|
||||||
$(install) -m 755 ../scripts/pppoe-init-turbolinux $(DESTDIR)/etc/rc.d/init.d/pppoe ; \
|
$(install) -m 755 ../scripts/pppoe-init-turbolinux $(DESTDIR)/etc/rc.d/init.d/pppoe ; \
|
||||||
fi
|
fi
|
||||||
|
@ -2,8 +2,8 @@ Index: scripts/pppoe-connect.in
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- scripts/pppoe-connect.in.orig
|
--- scripts/pppoe-connect.in.orig
|
||||||
+++ scripts/pppoe-connect.in
|
+++ scripts/pppoe-connect.in
|
||||||
@@ -214,11 +214,12 @@ fi
|
@@ -232,11 +232,12 @@ fi
|
||||||
PPP_STD_OPTIONS="$PLUGIN_OPTS noipdefault noauth default-asyncmap $DEFAULTROUTE hide-password nodetach $PEERDNS mtu 1492 mru 1492 noaccomp nodeflate nopcomp novj novjccomp user $USER lcp-echo-interval $LCP_INTERVAL lcp-echo-failure $LCP_FAILURE $PPPD_EXTRA"
|
PPP_STD_OPTIONS="$PLUGIN_OPTS $DOUNIT noipdefault noauth default-asyncmap $DEFAULTROUTE hide-password nodetach $PEERDNS mtu $MTU mru $MRU noaccomp nodeflate nopcomp novj novjccomp user $USER lcp-echo-interval $LCP_INTERVAL lcp-echo-failure $LCP_FAILURE $PPPD_EXTRA"
|
||||||
|
|
||||||
# Jigger DNS if required...
|
# Jigger DNS if required...
|
||||||
-if test "$DNSTYPE" = "SERVER" ; then
|
-if test "$DNSTYPE" = "SERVER" ; then
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7256f4a68dfc0aafe637dcf515c51b9ccc53cee264f04931113ea460fd409299
|
|
||||||
size 185624
|
|
3
rp-pppoe-3.11.tar.bz2
Normal file
3
rp-pppoe-3.11.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5abf7dc6b22a81e31bd0120faa784c21fa43397a80d40b6cac1a39058e84d138
|
||||||
|
size 191887
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 23 10:01:52 UTC 2013 - binli@opensuse.org
|
||||||
|
|
||||||
|
- update to version 3.11
|
||||||
|
* Make the rp-pppoe.so plugin avoid calling exit() if
|
||||||
|
the "persist" pppd option was given.
|
||||||
|
* Get rid of hard-coded nobsdcomp, nodeflate, novj and novjccomp
|
||||||
|
options in pppoe-server.
|
||||||
|
* Handle UNIT=xxx directive in pppoe-connect.
|
||||||
|
* Add "-i" flag to pppoe-server to ignore PADIs if there are
|
||||||
|
no free sessions.
|
||||||
|
* Add "-X <pidfile>" option to pppoe-server.
|
||||||
|
* In plugin, don't set devnam if it's already set.
|
||||||
|
* Eliminate race condition in signal handling.
|
||||||
|
* pppoe-server: Add -q and -Q options to allow specification of
|
||||||
|
path to pppd and pppoe programs respectively.
|
||||||
|
* Add a few more sanity checks to pppoe-server packet handling.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 24 00:48:39 UTC 2012 - crrodriguez@opensuse.org
|
Tue Jan 24 00:48:39 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package rp-pppoe
|
# spec file for package rp-pppoe
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,7 +15,6 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
%if %{?rel:0}%{!?rel:1}
|
%if %{?rel:0}%{!?rel:1}
|
||||||
%define rel 1
|
%define rel 1
|
||||||
@ -23,10 +22,10 @@
|
|||||||
|
|
||||||
Name: rp-pppoe
|
Name: rp-pppoe
|
||||||
Summary: A PPP Over Ethernet Redirector for PPPD
|
Summary: A PPP Over Ethernet Redirector for PPPD
|
||||||
Version: 3.10
|
|
||||||
Release: 28
|
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: Productivity/Networking/PPP
|
Group: Productivity/Networking/PPP
|
||||||
|
Version: 3.11
|
||||||
|
Release: 0
|
||||||
Source: http://www.roaringpenguin.com/pppoe/rp-pppoe-%{version}.tar.bz2
|
Source: http://www.roaringpenguin.com/pppoe/rp-pppoe-%{version}.tar.bz2
|
||||||
Url: http://www.roaringpenguin.com/pppoe
|
Url: http://www.roaringpenguin.com/pppoe
|
||||||
#Patch0: init-suse.diff
|
#Patch0: init-suse.diff
|
||||||
|
Loading…
Reference in New Issue
Block a user