Fix regression of VRF support
Signed-off-by: Gris Ge <fge@redhat.com>
This commit is contained in:
parent
999e4c93ae
commit
6cfc035196
38
0001-iface-Include-VRF-as-support-type.patch
Normal file
38
0001-iface-Include-VRF-as-support-type.patch
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
From b37434e3228b269728e9d7875993417de54d1330 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Gris Ge <fge@redhat.com>
|
||||||
|
Date: Thu, 15 Dec 2022 17:11:07 +0800
|
||||||
|
Subject: [PATCH] iface: Include VRF as support type
|
||||||
|
|
||||||
|
We accidentally forgot VRF as supported type.
|
||||||
|
The existing VRF test was skipped by CI hence not been found initially.
|
||||||
|
|
||||||
|
Manually run the test in RHEL host works well.
|
||||||
|
|
||||||
|
Signed-off-by: Gris Ge <fge@redhat.com>
|
||||||
|
---
|
||||||
|
rust/src/lib/query_apply/iface.rs | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/rust/src/lib/query_apply/iface.rs b/rust/src/lib/query_apply/iface.rs
|
||||||
|
index a379960b..888bcbb4 100644
|
||||||
|
--- a/rust/src/lib/query_apply/iface.rs
|
||||||
|
+++ b/rust/src/lib/query_apply/iface.rs
|
||||||
|
@@ -259,7 +259,7 @@ impl Interface {
|
||||||
|
}
|
||||||
|
|
||||||
|
impl InterfaceType {
|
||||||
|
- pub(crate) const SUPPORTED_LIST: [InterfaceType; 13] = [
|
||||||
|
+ pub(crate) const SUPPORTED_LIST: [InterfaceType; 14] = [
|
||||||
|
InterfaceType::Bond,
|
||||||
|
InterfaceType::LinuxBridge,
|
||||||
|
InterfaceType::Dummy,
|
||||||
|
@@ -273,5 +273,6 @@ impl InterfaceType {
|
||||||
|
InterfaceType::Vxlan,
|
||||||
|
InterfaceType::InfiniBand,
|
||||||
|
InterfaceType::Loopback,
|
||||||
|
+ InterfaceType::Vrf,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.39.0
|
||||||
|
|
@ -3,13 +3,14 @@
|
|||||||
|
|
||||||
Name: nmstate
|
Name: nmstate
|
||||||
Version: 2.2.2
|
Version: 2.2.2
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Declarative network manager API
|
Summary: Declarative network manager API
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://github.com/%{srcname}/%{srcname}
|
URL: https://github.com/%{srcname}/%{srcname}
|
||||||
Source0: %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz
|
Source0: %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz
|
||||||
Source1: %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz.asc
|
Source1: %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz.asc
|
||||||
Source2: https://nmstate.io/nmstate.gpg
|
Source2: https://nmstate.io/nmstate.gpg
|
||||||
|
Patch1: 0001-iface-Include-VRF-as-support-type.patch
|
||||||
BuildRequires: patchelf
|
BuildRequires: patchelf
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
Loading…
Reference in New Issue
Block a user