aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifdown
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2010-11-01 10:37:03 +0100
committerBill Nottingham <notting@redhat.com>2010-11-01 11:05:36 -0400
commit0ab245dec546bb7bee0ecaa1d30daaec16ea9561 (patch)
tree59cbf75da2b6073665ad525fa0382bf9e7be66b6 /sysconfig/network-scripts/ifdown
parenta6cec5030e5baeef97109bf34022b58efce3a32c (diff)
downloadinitscripts-0ab245dec546bb7bee0ecaa1d30daaec16ea9561.tar
initscripts-0ab245dec546bb7bee0ecaa1d30daaec16ea9561.tar.gz
initscripts-0ab245dec546bb7bee0ecaa1d30daaec16ea9561.tar.bz2
initscripts-0ab245dec546bb7bee0ecaa1d30daaec16ea9561.tar.xz
initscripts-0ab245dec546bb7bee0ecaa1d30daaec16ea9561.zip
Fix ifdown calling nmcli for NM-managed devices; others are handled by ifdown-${DEVICETYPE} (#612934).
Diffstat (limited to 'sysconfig/network-scripts/ifdown')
-rwxr-xr-xsysconfig/network-scripts/ifdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifdown b/sysconfig/network-scripts/ifdown
index f308d317..db045da4 100755
--- a/sysconfig/network-scripts/ifdown
+++ b/sysconfig/network-scripts/ifdown
@@ -45,7 +45,7 @@ if [ "$USE_NM" = "true" ]; then
if [ -n "$UUID" -a -z "$DEVICE" ]; then
DEVICE=$(nmcli -t --fields uuid,devices con status | awk -F ':' "\$1 == \"$UUID\" { print \$2 }")
fi
- if [ -n "$DEVICE" ] && is_nm_active "$DEVICE" ; then
+ if [ -n "$DEVICE" ] && ! is_nm_device_unmanaged "$DEVICE" ; then
nmcli dev disconnect iface "$DEVICE"
exit $?
fi