summaryrefslogtreecommitdiff
path: root/net.Linux
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-08-07 21:01:16 +0000
committerRoy Marples <roy@marples.name>2007-08-07 21:01:16 +0000
commit2fdff9d8d6ada5cf75c45d56872c6cbdc0d18e59 (patch)
treec7418f370f6c6ff4a56cc756bbe2081c445925ea /net.Linux
parent3295a9c0e0dc04ca291c5d6f930768d7345dbe01 (diff)
downloadopenrc-2fdff9d8d6ada5cf75c45d56872c6cbdc0d18e59.tar.gz
openrc-2fdff9d8d6ada5cf75c45d56872c6cbdc0d18e59.tar.bz2
openrc-2fdff9d8d6ada5cf75c45d56872c6cbdc0d18e59.tar.xz
Always give ppp a defaultmetric
Diffstat (limited to 'net.Linux')
-rw-r--r--net.Linux/ifconfig.sh4
-rw-r--r--net.Linux/iproute2.sh4
-rw-r--r--net.Linux/pppd.sh6
3 files changed, 13 insertions, 1 deletions
diff --git a/net.Linux/ifconfig.sh b/net.Linux/ifconfig.sh
index 7192ca8..afa2ede 100644
--- a/net.Linux/ifconfig.sh
+++ b/net.Linux/ifconfig.sh
@@ -27,6 +27,10 @@ _ifindex() {
"${IFACE}:"*) echo "${i}"; return 0;;
esac
done < /proc/net/dev
+
+ # Return the next available index
+ i=$((${i} + 1))
+ echo "${i}"
return 1
}
diff --git a/net.Linux/iproute2.sh b/net.Linux/iproute2.sh
index fa1171d..1621c7e 100644
--- a/net.Linux/iproute2.sh
+++ b/net.Linux/iproute2.sh
@@ -28,6 +28,10 @@ _ifindex() {
"${IFACE}:"*) echo "${i}"; return 0;;
esac
done < /proc/net/dev
+
+ # Return the next available index
+ i=$((${i} + 1))
+ echo "${i}"
return 1
}
diff --git a/net.Linux/pppd.sh b/net.Linux/pppd.sh
index 311bb8d..d8448f8 100644
--- a/net.Linux/pppd.sh
+++ b/net.Linux/pppd.sh
@@ -20,6 +20,9 @@ pppd_pre_start() {
# Interface has to be called ppp
[ "${IFACE%%[0-9]*}" = "ppp" ] || return 0
+ # Set our base metric
+ metric=4000
+
if ${IN_BACKGROUND} ; then
local config=
eval config=\$config_${IFVAR}
@@ -87,7 +90,8 @@ pppd_pre_start() {
if ! ${hasdefaultmetric} ; then
local m=\$metric_${IFVAR}
- [ -n "${m}" ] && opts="${opts} defaultmetric ${m}"
+ [ -z "${m}" ] && m=$((${metric} + _ifindex))
+ opts="${opts} defaultmetric ${m}"
fi
if [ -n "${mtu}" ] ; then
${hasmtu} || opts="${opts} mtu ${mtu}"