summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/bugs/lp1628337.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cloud_tests/configs/bugs/lp1628337.yaml')
-rw-r--r--tests/cloud_tests/configs/bugs/lp1628337.yaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/cloud_tests/configs/bugs/lp1628337.yaml b/tests/cloud_tests/configs/bugs/lp1628337.yaml
new file mode 100644
index 00000000..1d6bf483
--- /dev/null
+++ b/tests/cloud_tests/configs/bugs/lp1628337.yaml
@@ -0,0 +1,20 @@
+#
+# LP Bug 1628337: cloud-init tries to install NTP before even configuring the archives
+#
+cloud_config: |
+ #cloud-config
+ ntp:
+ servers: ['ntp.ubuntu.com']
+ apt:
+ primary:
+ - arches: [default]
+ uri: http://us.archive.ubuntu.com/ubuntu/
+collect_sciprts:
+ ntp.conf: |
+ #!/bin/bash
+ cat /etc/ntp.conf
+ sources.list: |
+ #!/bin/bash
+ cat /etc/apt/sources.list
+
+# vi: ts=4 expandtab