aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-02-11 02:34:18 +0000
committerBill Nottingham <notting@redhat.com>2003-02-11 02:34:18 +0000
commit9b662456bb416676232c35de2293509e31a33aca (patch)
tree5502d74b721e597c39fe3a23c070e9b9c970d473 /sysconfig/network-scripts/ifup
parent65d8ed1235e0aa578ed271e9ec22ec36caeacf2c (diff)
downloadinitscripts-9b662456bb416676232c35de2293509e31a33aca.tar
initscripts-9b662456bb416676232c35de2293509e31a33aca.tar.gz
initscripts-9b662456bb416676232c35de2293509e31a33aca.tar.bz2
initscripts-9b662456bb416676232c35de2293509e31a33aca.tar.xz
initscripts-9b662456bb416676232c35de2293509e31a33aca.zip
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
Diffstat (limited to 'sysconfig/network-scripts/ifup')
-rwxr-xr-xsysconfig/network-scripts/ifup5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index 73e4e805..3a3e4316 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -34,8 +34,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} up
+ source_config
+ if /usr/sbin/usernetctl ${DEVICE} report ; then
+ exec /usr/sbin/usernetctl ${DEVICE} up
fi
fi
echo $"Users cannot control this device." >&2