diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2018-10-23 23:58:42 +0200 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2018-10-23 23:58:42 +0200 |
commit | 16cc9be3ba331216392e988f20183ab8c4eda0ce (patch) | |
tree | e39eef286e6c838ba0382cd76a8269fe591b53c7 /tools/cloud-init/azure/config.boot.default | |
parent | f6c147b9ae7d2d62cf765c0b91514a052209b591 (diff) | |
download | vyos-build-16cc9be3ba331216392e988f20183ab8c4eda0ce.tar.gz vyos-build-16cc9be3ba331216392e988f20183ab8c4eda0ce.zip |
Separate files needed for different cloud providers
Fix serial console speed settings
Add google cloud image generation
Diffstat (limited to 'tools/cloud-init/azure/config.boot.default')
-rw-r--r-- | tools/cloud-init/azure/config.boot.default | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/cloud-init/azure/config.boot.default b/tools/cloud-init/azure/config.boot.default new file mode 100644 index 00000000..296c690a --- /dev/null +++ b/tools/cloud-init/azure/config.boot.default @@ -0,0 +1,30 @@ +system { + syslog { + global { + facility all { + level info + } + facility protocols { + level debug + } + } + } + ntp { + server "0.pool.ntp.org" + server "1.pool.ntp.org" + server "2.pool.ntp.org" + } + console { + device ttyS0 { + speed 115200 + } + } + config-management { + commit-revisions 100 + } +} + +interfaces { + loopback lo { + } +} |