summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/configs/bugs/lp1628337.yaml
blob: e39b3cd8417bb1e1864b3f76310042e863ff0db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# LP Bug 1628337: cloud-init tries to install NTP before even configuring the archives
#
required_features:
  - apt
  - lsb_release
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