babeld module: updated example config

Previosuly the example config did feature the deprecated `wired`
paramter. Wired can now be configured using the `type` parameter.
This commit is contained in:
Andreas Rammhold
2017-11-10 11:54:21 +01:00
parent 5d9073747a
commit 5feed06535
+2 -2
View File
@@ -51,7 +51,7 @@ in
type = types.nullOr (types.attrsOf types.unspecified); type = types.nullOr (types.attrsOf types.unspecified);
example = example =
{ {
wired = true; type = "tunnel";
"split-horizon" = true; "split-horizon" = true;
}; };
}; };
@@ -65,7 +65,7 @@ in
type = types.attrsOf (types.attrsOf types.unspecified); type = types.attrsOf (types.attrsOf types.unspecified);
example = example =
{ enp0s2 = { enp0s2 =
{ wired = true; { type = "wired";
"hello-interval" = 5; "hello-interval" = 5;
"split-horizon" = "auto"; "split-horizon" = "auto";
}; };