blob: 7561c7f3f1c1a5e02de35fd6b576a1691303ef87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#
# NTP config using specific pools
#
# NOTE: this should not require apt feature, use 'which' rather than 'dpkg -l'
# NOTE: this should not require no_ntpdate feature, use 'which' to check for
# installation rather than 'dpkg -l', as 'grep ntp' matches 'ntpdate'
# NOTE: lsb_release listed here because with recent cloud-init deb with
# (LP: 1628337) resolved, cloud-init will attempt to configure archives.
# this fails without lsb_release as UNAVAILABLE is used for $RELEASE
required_features:
- apt
- no_ntpdate
- lsb_release
cloud_config: |
#cloud-config
ntp:
pools:
- 0.cloud-init.mypool
- 1.cloud-init.mypool
- 172.16.15.14
collect_scripts:
ntp_installed_pools: |
#!/bin/bash
dpkg -l | grep ntp | wc -l
ntp_conf_dist_pools: |
#!/bin/bash
ls /etc/ntp.conf.dist | wc -l
ntp_conf_pools: |
#!/bin/bash
grep '^pool' /etc/ntp.conf
ntpq_servers: |
#!/bin/sh
ntpq -p -w
# vi: ts=4 expandtab
|