From 9b662456bb416676232c35de2293509e31a33aca Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 11 Feb 2003 02:34:18 +0000 Subject: fix nicknames with profiles (#82246) - source 'network' file in ifdown, so we get the current profile - change need_config to look in the various profile directories - pass device to usernetctl, as that's what's linked where usernetctl looks --- sysconfig/network-scripts/ifdown | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sysconfig/network-scripts/ifdown') diff --git a/sysconfig/network-scripts/ifdown b/sysconfig/network-scripts/ifdown index c16f251f..6f1be524 100755 --- a/sysconfig/network-scripts/ifdown +++ b/sysconfig/network-scripts/ifdown @@ -5,6 +5,9 @@ cd /etc/sysconfig/network-scripts . network-functions +[ -f ../network ] && . ../network +[ -f ../networking/network ] && . ../networking/network + CONFIG=$1 [ -z "$CONFIG" ] && { @@ -21,8 +24,9 @@ need_config $CONFIG if [ $UID != 0 ]; then if [ -x /usr/sbin/usernetctl ]; then - if /usr/sbin/usernetctl $CONFIG report ; then - exec /usr/sbin/usernetctl $CONFIG down + source_config + if /usr/sbin/usernetctl ${DEVICE} report ; then + exec /usr/sbin/usernetctl ${DEVICE} down fi fi echo $"Users cannot control this device." >&2 -- cgit v1.2.1