diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2015-05-25 10:17:47 +0200 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2015-05-25 10:19:54 +0200 |
commit | a1359b99cb5559c285c4eab5423b37f148af1e18 (patch) | |
tree | 0f7547f8768020f9343ba75ca50ba0fd8c56dc90 /rc.d/init.d | |
parent | 70dd52bd905ace1b6ef9ae45884d0f563a6eed00 (diff) | |
download | initscripts-a1359b99cb5559c285c4eab5423b37f148af1e18.tar initscripts-a1359b99cb5559c285c4eab5423b37f148af1e18.tar.gz initscripts-a1359b99cb5559c285c4eab5423b37f148af1e18.tar.bz2 initscripts-a1359b99cb5559c285c4eab5423b37f148af1e18.tar.xz initscripts-a1359b99cb5559c285c4eab5423b37f148af1e18.zip |
network: modem type interfaces should explicitly start after and stop before common interfaces
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 0f498f6f..21b75344 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -100,7 +100,7 @@ case "$1" in vpninterfaces="$vpninterfaces $i" continue fi - if [ "$TYPE" = "xDSL" ]; then + if [ "$TYPE" = "xDSL" -o "$TYPE" = "Modem" ]; then xdslinterfaces="$xdslinterfaces $i" continue fi @@ -197,7 +197,7 @@ case "$1" in bridgeinterfaces="$bridgeinterfaces $i" continue fi - if [ "$TYPE" = "xDSL" ]; then + if [ "$TYPE" = "xDSL" -o "$TYPE" = "Modem" ]; then xdslinterfaces="$xdslinterfaces $i" continue fi |