diff options
Diffstat (limited to 'tests/cloud_tests/configs/modules/ntp.yaml')
-rw-r--r-- | tests/cloud_tests/configs/modules/ntp.yaml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/cloud_tests/configs/modules/ntp.yaml b/tests/cloud_tests/configs/modules/ntp.yaml deleted file mode 100644 index fbef431b..00000000 --- a/tests/cloud_tests/configs/modules/ntp.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# -# Emtpy NTP config to setup using defaults -# -cloud_config: | - #cloud-config - ntp: - pools: {} - servers: {} -collect_scripts: - ntp_installed: | - #!/bin/bash - ntpd --version > /dev/null 2>&1 - echo $? - ntp_conf_dist_empty: | - #!/bin/bash - ls /etc/ntp.conf.dist | wc -l - ntp_conf_pool_list: | - #!/bin/bash - grep 'pool.ntp.org' /etc/ntp.conf | grep -v ^# - -# vi: ts=4 expandtab |