Compare commits

...

1 commit

Author SHA1 Message Date
Jörg Thalheim
dc68b69735 kexec-installer/test: remove deprecated routeconfig 2024-08-16 13:18:44 +02:00

View file

@ -54,7 +54,13 @@ makeTest' {
"192.168.42.1/24"
"42::1/64"
];
routes = [
routes = if pkgs.lib.versionAtLeast pkgs.stdenv.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"; }; }