summaryrefslogtreecommitdiffstats
path: root/openwrt/package/rp-pppoe/patches/rp-pppoe-3.5-scripts-fixes.patch
blob: 7a86abbcb48f8ce692e94464f63fcf1de3c4af7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-connect.in rp-pppoe-3.5-4/scripts/adsl-connect.in
--- rp-pppoe-3.5-orig/scripts/adsl-connect.in	2002-07-08 16:38:24.000000000 +0200
+++ rp-pppoe-3.5-4/scripts/adsl-connect.in	2005-03-10 01:01:15.000000000 +0100
@@ -18,7 +18,7 @@
 # Usage: adsl-connect [config_file]
 #        adsl-connect interface user [config_file]
 # Second form overrides USER and ETH from config file.
-# If config_file is omitted, defaults to /etc//ppp/pppoe.conf
+# If config_file is omitted, defaults to /etc/pppoe.conf
 #
 #***********************************************************************
 
@@ -30,25 +30,22 @@
 # Paths to programs
 IFCONFIG=/sbin/ifconfig
 PPPD=@PPPD@
-SETSID=@SETSID@
+SETSID=
 PPPOE=@sbindir@/pppoe
 LOGGER="/usr/bin/logger -t `basename $0`"
 
+#MODPROBE=modprobe
+MODPROBE=insmod
+
 # Set to "C" locale so we can parse messages from commands
 LANG=C
 export LANG
 
-# Must be root
-if test "`@ID@ -u`" != 0 ; then
-    echo "$0: You must be root to run this script" >& 2
-    exit 1
-fi
-
 if test "$SETSID" != "" -a ! -x "$SETSID"; then
     SETSID=""
 fi
 
-CONFIG=/etc//ppp/pppoe.conf
+CONFIG=/etc/pppoe.conf
 USER=""
 ETH=""
 
@@ -117,12 +114,12 @@
 if test `uname -s` = Linux ; then
     $IFCONFIG $ETH up mtu 1500
     # For 2.4 kernels.  Will fail on 2.2.x, but who cares?
-    modprobe ppp_generic > /dev/null 2>&1
-    modprobe ppp_async > /dev/null 2>&1
-    modprobe ppp_synctty > /dev/null 2>&1
+    $MODPROBE ppp_generic > /dev/null 2>&1
+    $MODPROBE ppp_async > /dev/null 2>&1
+    $MODPROBE ppp_synctty > /dev/null 2>&1
     if test -n "$LINUX_PLUGIN" ; then
-	modprobe pppox > /dev/null 2>&1
-	modprobe pppoe > /dev/null 2>&1
+	$MODPROBE pppox > /dev/null 2>&1
+	$MODPROBE pppoe > /dev/null 2>&1
     fi
 fi
 
@@ -131,7 +128,7 @@
     PPPD_SYNC=sync
 	# Increase the chances of it working on Linux...
     if test `uname -s` = Linux ; then
-	modprobe n_hdlc > /dev/null 2>&1
+	$MODPROBE n_hdlc > /dev/null 2>&1
     fi
 else
     PPPOE_SYNC=""
@@ -204,7 +201,7 @@
 
     # Interface name MUST BE LAST!!
     PLUGIN_OPTS="$PLUGIN_OPTS $ETH"
-    modprobe pppoe > /dev/null 2>&1
+    $MODPROBE pppoe > /dev/null 2>&1
 fi
 
 if test "$DEFAULTROUTE" != "no" ; then
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-setup.in rp-pppoe-3.5-4/scripts/adsl-setup.in
--- rp-pppoe-3.5-orig/scripts/adsl-setup.in	2002-07-08 16:38:24.000000000 +0200
+++ rp-pppoe-3.5-4/scripts/adsl-setup.in	2005-03-09 17:24:02.000000000 +0100
@@ -27,7 +27,7 @@
 LANG=C
 export LANG
 
-CONFIG=/etc/ppp/pppoe.conf
+CONFIG=/etc/pppoe.conf
 
 # Protect created files
 umask 077
@@ -46,12 +46,6 @@
 $ECHO "properly..."
 $ECHO ""
 
-# Must be root
-if [ "`@ID@ -u`" != 0 ] ; then
-    $ECHO "$0: Sorry, you must be root to run this script"
-    exit 1
-fi
-
 # Prototype config file must exist
 if [ ! -r "$CONFIG" ] ; then
     $ECHO "Oh, dear, I don't see the file '$CONFIG' anywhere.  Please"
@@ -280,12 +274,7 @@
     fi
 fi
 
-# Where is pppd likely to put its pid?
-if [ -d /var/run ] ; then
-    VARRUN=/var/run
-else
-    VARRUN=/etc/ppp
-fi
+VARRUN=/var/run
 
 # Some #$(*& ISP's use a slash in the user name...
 sed -e "s&^USER=.*&USER='$U'&" \
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-start.in rp-pppoe-3.5-4/scripts/adsl-start.in
--- rp-pppoe-3.5-orig/scripts/adsl-start.in	2002-07-08 16:38:24.000000000 +0200
+++ rp-pppoe-3.5-4/scripts/adsl-start.in	2005-03-10 00:53:13.000000000 +0100
@@ -18,7 +18,7 @@
 # Usage: adsl-start [config_file]
 #        adsl-start interface user [config_file]
 # Second form overrides USER and ETH from config file.
-# If config_file is omitted, defaults to /etc/ppp/pppoe.conf
+# If config_file is omitted, defaults to /etc/pppoe.conf
 #
 #***********************************************************************
 
@@ -36,15 +36,13 @@
 export LANG
 
 # Defaults
-CONFIG=/etc/ppp/pppoe.conf
+CONFIG=/etc/pppoe.conf
 USER=""
 ETH=""
 ME=`basename $0`
-# Must be root
-if [ "`@ID@ -u`" != 0 ] ; then
-    $ECHO "$ME: You must be root to run this script" >& 2
-    exit 1
-fi
+
+#TTY_S="tty -s"
+TTY_S=/bin/true
 
 # Debugging
 if [ "$DEBUG" = "1" ] ; then
@@ -139,6 +137,8 @@
     fi
     # Delete bogus PIDFILE
     rm -f "$PIDFILE" "$PIDFILE.pppd" "$PIDFILE.pppoe" "$PIDFILE.start"
+else
+  mkdir -p /var/run
 fi
 
 echo $$ > $PIDFILE.start
@@ -169,14 +169,14 @@
     # Looks like the interface came up
     if [ $? = 0 ] ; then
 	# Print newline if standard input is a TTY
-	tty -s && $ECHO " Connected!"
+	$TTY_S && $ECHO " Connected!"
 	exit 0
     fi
 
     if test -n "$FORCEPING" ; then
 	$ECHO -n "$FORCEPING"
     else
-	tty -s && $ECHO -n "$PING"
+	$TTY_S && $ECHO -n "$PING"
     fi
     sleep $CONNECT_POLL
     TIME=`expr $TIME + $CONNECT_POLL`
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-status rp-pppoe-3.5-4/scripts/adsl-status
--- rp-pppoe-3.5-orig/scripts/adsl-status	2002-07-08 16:38:24.000000000 +0200
+++ rp-pppoe-3.5-4/scripts/adsl-status	2005-03-10 01:01:17.000000000 +0100
@@ -15,12 +15,12 @@
 # LIC: GPL
 #
 # Usage: adsl-status [config_file]
-# If config_file is omitted, defaults to /etc/ppp/pppoe.conf
+# If config_file is omitted, defaults to /etc/pppoe.conf
 #
 #***********************************************************************
 
 # Defaults
-CONFIG=/etc/ppp/pppoe.conf
+CONFIG=/etc/pppoe.conf
 
 case "$#" in
     1)
@@ -58,10 +58,7 @@
 
 PPPD_PID=`cat "$PPPD_PIDFILE"`
 
-# Sigh.  Some versions of pppd put PID files in /var/run; others put them
-# in /etc/ppp.  Since it's too messy to figure out what pppd does, we
-# try both locations.
-for i in /etc/ppp/ppp*.pid /var/run/ppp*.pid ; do
+for i in /var/run/ppp*.pid ; do
     if [ -r $i ] ; then
 	PID=`cat $i`
 	if [ "$PID" = "$PPPD_PID" ] ; then
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-stop.in rp-pppoe-3.5-4/scripts/adsl-stop.in
--- rp-pppoe-3.5-orig/scripts/adsl-stop.in	2002-07-08 16:38:24.000000000 +0200
+++ rp-pppoe-3.5-4/scripts/adsl-stop.in	2005-03-09 16:37:38.000000000 +0100
@@ -16,7 +16,7 @@
 # LIC: GPL
 #
 # Usage: adsl-stop [config_file]
-# If config_file is omitted, defaults to /etc/ppp/pppoe.conf
+# If config_file is omitted, defaults to /etc/pppoe.conf
 #
 #***********************************************************************
 
@@ -28,7 +28,7 @@
 LOGGER="/usr/bin/logger -t $ME"
 CONFIG="$1"
 if [ "$CONFIG" = "" ] ; then
-    CONFIG=/etc/ppp/pppoe.conf
+    CONFIG=/etc/pppoe.conf
 fi
 
 if [ ! -f "$CONFIG" -o ! -r "$CONFIG" ] ; then