blob: 3a73994eb6d303452c557045c7b65dc69ebc703b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# Early boot command
#
cloud_config: |
#cloud-config
bootcmd:
- echo 192.168.1.130 us.archive.ubuntu.com > /etc/hosts
collect_scripts:
hosts: |
#!/bin/bash
cat /etc/hosts
# vi: ts=4 expandtab
|