summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/modules/ntp.yaml
blob: d094157896e8a19d06c6b9ea2816bb914325e061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Emtpy NTP config to setup using defaults
#
cloud_config: |
  #cloud-config
  ntp:
    pools: {}
    servers: {}
collect_scripts:
  ntp_installed_empty: |
    #!/bin/bash
    dpkg -l | grep ntp | wc -l
  ntp_conf_dist_empty: |
    #!/bin/bash
    ls /etc/ntp.conf.dist | wc -l
  ntp_conf_empty: |
    #!/bin/bash
    grep '^pool' /etc/ntp.conf

# vi: ts=4 expandtab