Browse Source

ppp: derive interface unit numbers from previous enumeration

SVN-Revision: 12417
Felix Fietkau 17 years ago
parent
commit
6488abc11c
1 changed files with 10 additions and 4 deletions
  1. 10 4
      package/ppp/files/ppp.sh

+ 10 - 4
package/ppp/files/ppp.sh

@@ -2,10 +2,16 @@ scan_ppp() {
 	config_get ifname "$1" ifname
 	pppdev="${pppdev:-0}"
 	config_get unit "$1" unit
-	[ -z "$unit" -a "${ifname%%[0-9]*}" != ppp ] && {
-		config_set "$1" ifname "ppp$pppdev"
-		config_set "$1" unit "$pppdev"
-		pppdev="$(($pppdev + 1))"
+	[ -z "$unit" ] && {
+		unit="$pppdev"
+		if [ "${ifname%%[0-9]*}" = ppp ]; then
+			unit="${ifname##ppp}"
+			[ "$pppdev" -le "$unit" ] && pppdev="$(($unit + 1))"
+		else
+			pppdev="$(($pppdev + 1))"
+		fi
+		config_set "$1" ifname "ppp$unit"
+		config_set "$1" unit "$unit"
 	}
 }