From b5546e711fd7b59f2169c1045290e4bab6df4d02 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Wed, 27 Feb 2013 11:06:00 +0000 Subject: Bail early if NetworkManager is used. Our initscripts vary quite different from Fedoras in that we will actively start a wpa_supplicant daemon for wireless interfaces As this can cause problems if the NM detection code is flaky (which it is) we really do want to bail early when this is the case https://bugs.mageia.org/show_bug.cgi?id=9028 --- sysconfig/network-scripts/ifdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sysconfig/network-scripts/ifdown') diff --git a/sysconfig/network-scripts/ifdown b/sysconfig/network-scripts/ifdown index 597802bf..34a10c53 100755 --- a/sysconfig/network-scripts/ifdown +++ b/sysconfig/network-scripts/ifdown @@ -49,6 +49,8 @@ if [ "$_use_nm" = "true" ]; then nmcli dev disconnect iface "$DEVICE" exit $? fi + echo $"$0: interface ${CONFIG} is controlled by NetworkManager; skipping." >&2 + exit 0 fi if [ -x /sbin/ifdown-pre-local ]; then -- cgit v1.2.1