You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
2 years ago
|
From ac2132ceaeb611c89eacb468a66f1815ee6fe806 Mon Sep 17 00:00:00 2001
|
||
|
From: Till Maas <timaas@redhat.com>
|
||
|
Date: Mon, 13 Dec 2021 16:08:42 +0000
|
||
|
Subject: [PATCH 1/2] hv_set_ifconfig.sh: Use nmcli commands
|
||
|
|
||
|
RH-Author: Till Maas <None>
|
||
|
RH-MergeRequest: 2: hv_set_ifconfig.sh: Use nmcli commands
|
||
|
RH-Commit: [1/2] fbb64255b1d96babd362391d53529cef0e449296 (timaas/hyperv-daemons)
|
||
|
RH-Bugzilla: 2026371
|
||
|
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
||
|
RH-Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>
|
||
|
|
||
|
Instead of using deprecated ifup/ifdown commands, use nmcli commands.
|
||
|
Taking the connection down is not necessary with NM, so don't do it.
|
||
|
|
||
|
Resolves: #2026371
|
||
|
---
|
||
|
hv_set_ifconfig.sh | 7 ++-----
|
||
|
1 file changed, 2 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/hv_set_ifconfig.sh b/hv_set_ifconfig.sh
|
||
|
index 3dd064c..5a64efe 100644
|
||
|
--- a/hv_set_ifconfig.sh
|
||
|
+++ b/hv_set_ifconfig.sh
|
||
|
@@ -57,8 +57,5 @@ echo "ONBOOT=yes" >> $1
|
||
|
|
||
|
cp $1 /etc/sysconfig/network-scripts/
|
||
|
|
||
|
-
|
||
|
-interface=$(echo $1 | awk -F - '{ print $2 }')
|
||
|
-
|
||
|
-/sbin/ifdown $interface 2>/dev/null
|
||
|
-/sbin/ifup $interface 2>/dev/null
|
||
|
+nmcli connection load "/etc/sysconfig/network-scripts/$1"
|
||
|
+nmcli connection up filename "/etc/sysconfig/network-scripts/$1"
|
||
|
--
|
||
|
2.27.0
|
||
|
|