summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/ntp_servers.yaml
blob: 9d1d65ef746efb1627203e9dc9a66e27922bc088 (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
#
# NTP config using specific servers
#
# 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'
required_features:
  - apt
  - no_ntpdate
  - lsb_release
cloud_config: |
  #cloud-config
  ntp:
    servers:
        - 172.16.15.14
        - 172.16.17.18
collect_scripts:
  ntp_installed_servers: |
    #!/bin/sh
    dpkg -l | grep -c ntp
  ntp_conf_dist_servers: |
    #!/bin/sh
    cat /etc/ntp.conf.dist | wc -l
  ntp_conf_servers: |
    #!/bin/sh
    grep '^server' /etc/ntp.conf
  ntpq_servers: |
    #!/bin/sh
    ntpq -p -w

# vi: ts=4 expandtab