summaryrefslogtreecommitdiff
path: root/templates/ntp.conf.alpine.tmpl
diff options
context:
space:
mode:
authordermotbradley <dermot_bradley@yahoo.com>2020-08-20 00:18:25 +0100
committerGitHub <noreply@github.com>2020-08-19 18:18:25 -0500
commit79a8ce7e714ae1686c10bff77612eab0f6eccc95 (patch)
tree5bf05e746bb91f6a21bd549a1fc579d2c9cd1940 /templates/ntp.conf.alpine.tmpl
parentb749548a9eb43b34cce64f8688107645411abc8c (diff)
downloadvyos-cloud-init-79a8ce7e714ae1686c10bff77612eab0f6eccc95.tar.gz
vyos-cloud-init-79a8ce7e714ae1686c10bff77612eab0f6eccc95.zip
Add Alpine Linux support. (#535)
Add new module cc_apk_configure for creating Alpine /etc/apk/repositories file. Modify cc_ca_certs, cc_ntp, cc_power_state_change, and cc_resolv_conf for Alpine. Add Alpine template files for Chrony and Busybox NTP support. Add Alpine template file for /etc/hosts.
Diffstat (limited to 'templates/ntp.conf.alpine.tmpl')
-rw-r--r--templates/ntp.conf.alpine.tmpl10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/ntp.conf.alpine.tmpl b/templates/ntp.conf.alpine.tmpl
new file mode 100644
index 00000000..59ca8fc1
--- /dev/null
+++ b/templates/ntp.conf.alpine.tmpl
@@ -0,0 +1,10 @@
+## template:jinja
+# /etc/ntp.conf
+#
+# Configuration for Busybox ntpd - it only supports "server" lines.
+
+{% if servers %}# Servers
+{% endif %}
+{% for server in servers -%}
+server {{server}}
+{% endfor %}