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:47:38 +01:00
parent 5d9073747a
commit 5feed06535
No known key found for this signature in database
GPG Key ID: E432E410B5E48C86

View File

@ -51,7 +51,7 @@ in
type = types.nullOr (types.attrsOf types.unspecified);
example =
{
wired = true;
type = "tunnel";
"split-horizon" = true;
};
};
@ -65,7 +65,7 @@ in
type = types.attrsOf (types.attrsOf types.unspecified);
example =
{ enp0s2 =
{ wired = true;
{ type = "wired";
"hello-interval" = 5;
"split-horizon" = "auto";
};