4505baafb8
* New pppd options have been added: * ifname, to set the name for the PPP interface device * defaultroute-metric, to set the metric for the default route * defaultroute6, to add an IPv6 default route (with nodefaultroute6 to prevent adding an IPv6 default route). * up_sdnotify, to have pppd notify systemd when the link is up. * The rp-pppoe plugin has new options: * host-uniq, to set the Host-Uniq value to send * pppoe-padi-timeout, to set the timeout for discovery packets * pppoe-padi-attempts, to set the number of discovery attempts. * Added the CLASS attribute in radius packets. * Fixed warnings and issues found by static analysis. - Obsoleted patches: [...] - Patches that got renamed, because they needed rediffing: [...] - bsc#1172916: Fix an outdated comment for lcp-echo-interval. OBS-URL: https://build.opensuse.org/package/show/network/ppp?expand=0&rev=60
31 lines
768 B
Diff
31 lines
768 B
Diff
diff -Ndur ppp-2.4.7/scripts/redialer ppp-2.4.7-fix-bashisms/scripts/redialer
|
|
--- ppp-2.4.7/scripts/redialer 2014-08-09 15:31:39.000000000 +0300
|
|
+++ ppp-2.4.7-fix-bashisms/scripts/redialer 2014-11-19 05:09:46.168864978 +0200
|
|
@@ -31,7 +31,7 @@
|
|
# Function to initialize the modem and ensure that it is in command
|
|
# state. This may not be needed, but it doesn't hurt.
|
|
#
|
|
-function initialize
|
|
+initialize()
|
|
{
|
|
chat -v TIMEOUT 3 '' AT 'OK-+++\c-OK'
|
|
return
|
|
@@ -41,7 +41,7 @@
|
|
#
|
|
# Script to dial a telephone
|
|
#
|
|
-function callnumber
|
|
+callnumber()
|
|
{
|
|
chat -v \
|
|
ABORT '\nBUSY\r' \
|
|
@@ -66,7 +66,7 @@
|
|
#
|
|
# Script to dial any telephone number
|
|
#
|
|
-function callall
|
|
+callall()
|
|
{
|
|
# echo "dialing attempt number: $1" >/dev/console
|
|
callnumber $PHONE1
|