9 lines
149 B
Plaintext
9 lines
149 B
Plaintext
|
#!/bin/bash
|
||
|
# Tweak the stock ubuntu cloud-init config
|
||
|
|
||
|
set -e
|
||
|
|
||
|
sudo dd of=/etc/cloud/cloud.cfg.d/10_etc_hosts.cfg << EOF
|
||
|
manage_etc_hosts: True
|
||
|
EOF
|