From f72112e801eb6c44fba746d2c2eebe6388f85684 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Mon, 3 Mar 2014 13:44:04 +0000 Subject: trove: Avoid running trove-early-setup on upgrades The trove-early-setup configuration tool is for initial deployment only. --- trove.configure | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/trove.configure b/trove.configure index b2f21ffb..1e6f6f57 100755 --- a/trove.configure +++ b/trove.configure @@ -41,6 +41,17 @@ set -e ROOT="$1" +# The generic system that we are configuring contains a default hostname +# which we should override. This is necessary even when upgrading because +# baserock-system-config-sync isn't smart enough to deal. +echo "Set hostname to $TROVE_ID" +echo "$TROVE_ID" > "$ROOT/etc/hostname" + +if [ "$UPGRADE" == "yes" ]; then + echo "Not configuring trove-early-setup because this is an upgrade." + exit 0 +fi + ########################################################################## lua_escape() @@ -64,9 +75,6 @@ EOF ########################################################################## -echo "Set hostname to $TROVE_ID" -echo "$TROVE_ID" > "$ROOT/etc/hostname" - # trove-early-setup needs "localhost" to be defined, and there's no # guarantee it's going to be in DNS, or that external networking is # up when trove-early-setup runs. We work around this by creating -- cgit v1.2.1