diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2015-05-06 13:35:05 +0200 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2015-05-06 13:35:05 +0200 |
commit | 0d455f31ead37e4046f28f125522130820a9b950 (patch) | |
tree | fee35247676bdfb528d90d1f1420923b32c89c1f /sysconfig | |
parent | c034f81bb4fb0c75bb09aefa85a5b657fabe30f7 (diff) | |
download | initscripts-0d455f31ead37e4046f28f125522130820a9b950.tar initscripts-0d455f31ead37e4046f28f125522130820a9b950.tar.gz initscripts-0d455f31ead37e4046f28f125522130820a9b950.tar.bz2 initscripts-0d455f31ead37e4046f28f125522130820a9b950.tar.xz initscripts-0d455f31ead37e4046f28f125522130820a9b950.zip |
ifup: don't call NM for loopback
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index 2940e889..2b826e2d 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -65,7 +65,7 @@ then exit 0 fi -if [ "$_use_nm" = "true" -a -n "$UUID" ]; then +if [ "$_use_nm" = "true" -a -n "$UUID" -a "$DEVICE" != "lo" ]; then if [ "foo$2" = "fooboot" ] && [ "${TYPE}" = "Wireless" ]; then exit 0 fi |