2016-11-21 08:43:01 -05:00
|
|
|
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
write_entries() {
|
|
|
|
local file="$1"
|
|
|
|
local entries="$2"
|
|
|
|
|
|
|
|
# Don't do anything if the file isn't there
|
|
|
|
if [ ! -f "$file" ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if grep -q "^# HEAT_HOSTS_START" "$file"; then
|
|
|
|
temp=$(mktemp)
|
2017-04-07 10:50:39 +01:00
|
|
|
(
|
|
|
|
sed '/^# HEAT_HOSTS_START/,$d' "$file"
|
|
|
|
echo -ne "\n# HEAT_HOSTS_START - Do not edit manually within this section!\n"
|
|
|
|
echo "$entries"
|
|
|
|
echo -ne "# HEAT_HOSTS_END\n\n"
|
|
|
|
sed '1,/^# HEAT_HOSTS_END/d' "$file"
|
|
|
|
) > "$temp"
|
|
|
|
echo "INFO: Updating hosts file $file, check below for changes"
|
|
|
|
diff "$file" "$temp" || true
|
|
|
|
cat "$temp" > "$file"
|
2016-11-21 08:43:01 -05:00
|
|
|
else
|
|
|
|
echo -ne "\n# HEAT_HOSTS_START - Do not edit manually within this section!\n" >> "$file"
|
|
|
|
echo "$entries" >> "$file"
|
|
|
|
echo -ne "# HEAT_HOSTS_END\n\n" >> "$file"
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ ! -z "$hosts" ]; then
|
2016-12-06 23:06:44 +00:00
|
|
|
for tmpl in /etc/cloud/templates/hosts.*.tmpl ; do
|
|
|
|
write_entries "$tmpl" "$hosts"
|
|
|
|
done
|
2016-11-21 08:43:01 -05:00
|
|
|
write_entries "/etc/hosts" "$hosts"
|
|
|
|
else
|
|
|
|
echo "No hosts in Heat, nothing written."
|
|
|
|
fi
|