Skip to content

Commit

Permalink
kexec-installer/test: remove deprecated routeconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored and mergify[bot] committed Aug 16, 2024
1 parent 8e24c42 commit 3e26bd9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nix/kexec-installer/test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ makeTest' {
"192.168.42.1/24"
"42::1/64"
];
routes = [
routes = if pkgs.lib.versionAtLeast lib.version "24.11" then [
{ Destination = "192.168.43.0/24"; }
{ Destination = "192.168.44.0/24"; Gateway = "192.168.43.1"; }
{ Destination = "192.168.45.0/24"; Gateway = "43::1"; }
{ Destination = "43::0/64"; }
{ Destination = "44::1/64"; Gateway = "43::1"; }
] else [
# Some static routes that we want to see in the kexeced image
{ routeConfig = { Destination = "192.168.43.0/24"; }; }
{ routeConfig = { Destination = "192.168.44.0/24"; Gateway = "192.168.43.1"; }; }
Expand Down

0 comments on commit 3e26bd9

Please sign in to comment.