diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-07-18 01:31:40 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-07-18 01:31:40 +0200 |
commit | df0bd30f3259af3440056b64bc2c35fef6035e7f (patch) | |
tree | 1b10aa0cfe3cd1e81e92861d37ea6e27733d7465 | |
parent | 169e51c5aaad887f90952b784f019bc198e79203 (diff) | |
download | vyos-1x-df0bd30f3259af3440056b64bc2c35fef6035e7f.tar.gz vyos-1x-df0bd30f3259af3440056b64bc2c35fef6035e7f.zip |
Add a small config to the test data dir for use in unit tests.
-rw-r--r-- | tests/data/config.boot.default | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/data/config.boot.default b/tests/data/config.boot.default new file mode 100644 index 000000000..0a75716b8 --- /dev/null +++ b/tests/data/config.boot.default @@ -0,0 +1,40 @@ +system { + host-name vyos + login { + user vyos { + authentication { + encrypted-password $6$QxPS.uk6mfo$9QBSo8u1FkH16gMyAVhus6fU3LOzvLR9Z9.82m3tiHFAxTtIkhaZSWssSgzt4v4dGAL8rhVQxTg0oAG9/q11h/ + plaintext-password "" + } + level admin + } + } + syslog { + global { + facility all { + level notice + } + facility protocols { + level debug + } + } + } + ntp { + server "0.pool.ntp.org" + server "1.pool.ntp.org" + server "2.pool.ntp.org" + } + console { + device ttyS0 { + speed 9600 + } + } + config-management { + commit-revisions 100 + } +} + +interfaces { + loopback lo { + } +} |