summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-10-14 11:32:49 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-10-14 11:32:49 +0200
commitb981eca0574092024b0ab76a5e3c1932d6381a94 (patch)
treeef5b7926397df1765b59ef5af047b91eb2675e91 /nixos
parent9e1943edc03c14854295d47001c2b46d7d2472de (diff)
parentffde8a8e1ed76caa1d213c3209dee7f75b57a20d (diff)
Merge master into staging-next
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/systemd-networkd-vrf.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/systemd-networkd-vrf.nix b/nixos/tests/systemd-networkd-vrf.nix
index bd4751f8e435..9f09d801f77a 100644
--- a/nixos/tests/systemd-networkd-vrf.nix
+++ b/nixos/tests/systemd-networkd-vrf.nix
@@ -38,14 +38,14 @@ in {
matchConfig.Name = "vrf1";
networkConfig.IPForward = "yes";
routes = [
- { routeConfig = { Destination = "192.168.1.2"; Metric = "100"; }; }
+ { routeConfig = { Destination = "192.168.1.2"; Metric = 100; }; }
];
};
networks."10-vrf2" = {
matchConfig.Name = "vrf2";
networkConfig.IPForward = "yes";
routes = [
- { routeConfig = { Destination = "192.168.2.3"; Metric = "100"; }; }
+ { routeConfig = { Destination = "192.168.2.3"; Metric = 100; }; }
];
};