2019-08-22 12:19:49 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
HERE="$(dirname "$0")"
|
|
|
|
|
2020-04-20 16:43:13 -07:00
|
|
|
# shellcheck source=ci/setup-new-buildkite-agent/utils.sh
|
2019-08-22 12:19:49 -07:00
|
|
|
source "$HERE"/utils.sh
|
|
|
|
|
|
|
|
ensure_env || exit 1
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
echo "preserve_hostname: false" > /etc/cloud/cloud.cfg.d/99-disable-preserve-hostname.cfg
|
|
|
|
systemctl restart cloud-init
|
|
|
|
hostnamectl set-hostname "$1"
|