diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-17 07:13:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 07:13:42 +0200 |
commit | 30f61940b79daece00ceaa43f30b9711f28297cb (patch) | |
tree | 3a7f0de76801cc94afe1bcdc5037274863cc8117 | |
parent | 1f59787ff61452da38da65a0c49ee4365026a3e0 (diff) | |
parent | 04948aa983878e3edfca10e33fa620a4bc9303a2 (diff) | |
download | vyos-build-30f61940b79daece00ceaa43f30b9711f28297cb.tar.gz vyos-build-30f61940b79daece00ceaa43f30b9711f28297cb.zip |
Merge pull request #626 from jestabro/syntax-config-default
T6356: normalize '.., ntp, server' path syntax in config.boot.default
-rw-r--r-- | data/live-build-config/includes.chroot/opt/vyatta/etc/config.boot.default | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/data/live-build-config/includes.chroot/opt/vyatta/etc/config.boot.default b/data/live-build-config/includes.chroot/opt/vyatta/etc/config.boot.default index c3ff6c79..d31892ba 100644 --- a/data/live-build-config/includes.chroot/opt/vyatta/etc/config.boot.default +++ b/data/live-build-config/includes.chroot/opt/vyatta/etc/config.boot.default @@ -29,9 +29,12 @@ system { address fe80::/10 address fc00::/7 } - server "time1.vyos.net" - server "time2.vyos.net" - server "time3.vyos.net" + server time1.vyos.net { + } + server time2.vyos.net { + } + server time3.vyos.net { + } } console { device ttyS0 { |