[release-25.05] openvswitch: 3.5.1 -> 3.5.2 (#438904)

This commit is contained in:
Adam C. Stephens
2025-09-01 09:47:54 -04:00
committed by GitHub
2 changed files with 10 additions and 5 deletions

View File

@@ -56,7 +56,7 @@
node2.wait_for_unit("ovsdb.service") node2.wait_for_unit("ovsdb.service")
node2.wait_for_unit("ovs-vswitchd.service") node2.wait_for_unit("ovs-vswitchd.service")
node1.succeed("ping -c3 10.0.0.2") node1.wait_until_succeeds("ping -c1 10.0.0.2", timeout=30)
node2.succeed("ping -c3 10.0.0.1") node2.wait_until_succeeds("ping -c1 10.0.0.1", timeout=30)
''; '';
} }

View File

@@ -30,13 +30,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = if withDPDK then "openvswitch-dpdk" else "openvswitch"; pname = if withDPDK then "openvswitch-dpdk" else "openvswitch";
version = "3.5.1"; version = "3.5.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openvswitch"; owner = "openvswitch";
repo = "ovs"; repo = "ovs";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-iiFpX4w6vdsRxjhRcxXTTtSAb8WPwg1afqwgBpzjhoA="; hash = "sha256-x3n/Hv0hRx6d16qvIP40jFAOj6kli6u+5W95qGXvxuA=";
}; };
outputs = [ outputs = [
@@ -132,7 +132,12 @@ stdenv.mkDerivation rec {
incus = nixosTests.incus-lts.openvswitch; incus = nixosTests.incus-lts.openvswitch;
}; };
updateScript = nix-update-script { }; updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"^v(3\\.5\\.[0-9]+)$"
];
};
}; };
meta = with lib; { meta = with lib; {