blob: ee47a7411552c4e02dc4a2f424aea003bfe70114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# ntp enabled, systemd-timesyncd selected, check conf file
# as systemd-timesyncd won't start in a container
#
cloud_config: |
#cloud-config
ntp:
enabled: true
ntp_client: systemd-timesyncd
collect_scripts:
timesyncd_conf: |
#!/bin/sh
cat /etc/systemd/timesyncd.conf.d/cloud-init.conf
# vi: ts=4 expandtab
|