82a3817270
- hpvd-hv_set_ifconfig.sh-Use-nmcli-commands.patch [bz#2026371] - hpvd-Use-filename-for-connection-profile.patch [bz#2026371] - Resolves: bz#2026371 ([RHEL9][Hyper-V]The /usr/libexec/hypervkvpd/hv_set_ifconfig need update for RHEL9 since the ifdown/ifup was not supported on RHEL9)
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
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
|
|
|