blob: 1d6bf4830a4ef37cf71ba00c532bd6f5edcded73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|