diff options
author | James Falcon <james.falcon@canonical.com> | 2021-09-29 18:32:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 18:32:53 -0500 |
commit | ba083245537abd5bf5942fbe851e21eb8f245000 (patch) | |
tree | a66fcf2bed758cc46ba7a7a231937b9d03970566 /tests/cloud_tests/testcases/modules/ntp_servers.yaml | |
parent | 934c8d71fd99b2ca24db01ca853ff42faa88fb5e (diff) | |
download | vyos-cloud-init-ba083245537abd5bf5942fbe851e21eb8f245000.tar.gz vyos-cloud-init-ba083245537abd5bf5942fbe851e21eb8f245000.zip |
testing: remove cloud_tests (#1020)
Cloud tests have been replaced with integration tests
Diffstat (limited to 'tests/cloud_tests/testcases/modules/ntp_servers.yaml')
-rw-r--r-- | tests/cloud_tests/testcases/modules/ntp_servers.yaml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/cloud_tests/testcases/modules/ntp_servers.yaml b/tests/cloud_tests/testcases/modules/ntp_servers.yaml deleted file mode 100644 index ee636679..00000000 --- a/tests/cloud_tests/testcases/modules/ntp_servers.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# -# NTP config using specific servers -# -required_features: - - lsb_release -cloud_config: | - #cloud-config - ntp: - ntp_client: ntp - servers: - - 172.16.15.14 - - 172.16.17.18 -collect_scripts: - ntp_installed_servers: | - #!/bin/sh - ntpd --version > /dev/null 2>&1 - echo $? - 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 -n - -# vi: ts=4 expandtab |