nixos/tests/prometheus-exporters/bird: set router id
Previously bird would refuse to start up because the router id wasn't set. > bird[682]: Cannot determine router ID, please configure it manually
This commit is contained in:
parent
65234f0911
commit
fc55a1bdd4
|
@ -118,6 +118,8 @@ let
|
||||||
metricProvider = {
|
metricProvider = {
|
||||||
services.bird2.enable = true;
|
services.bird2.enable = true;
|
||||||
services.bird2.config = ''
|
services.bird2.config = ''
|
||||||
|
router id 127.0.0.1;
|
||||||
|
|
||||||
protocol kernel MyObviousTestString {
|
protocol kernel MyObviousTestString {
|
||||||
ipv4 {
|
ipv4 {
|
||||||
import all;
|
import all;
|
||||||
|
|
Loading…
Reference in New Issue