summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-03-12 11:45:11 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-03-12 11:46:24 +0000
commitf0132ba6569ea66ae28c09dfa8b80238d45958cd (patch)
treeb6ada8766fbc2bb33a9f0aa1d47d325d17b752ed
parentbe20e754434decec111a50401c97dd2140cbb693 (diff)
parent92a399e428d7efb0666ac46037bad23bf07df16b (diff)
downloaddefinitions-f0132ba6569ea66ae28c09dfa8b80238d45958cd.tar.gz
Merge branch 'baserock/sam/trove-configure'
Reviewed-By: Richard Ipsum <richard.ipsum@codethink.co.uk> Reviewed-By: Richard Maw <richard.maw@codethink.co.uk> Reviewed-By: Lars Wirzenius <richard.maw@codethink.co.uk>
-rwxr-xr-xtrove.configure42
1 files changed, 32 insertions, 10 deletions
diff --git a/trove.configure b/trove.configure
index 17686eb3..a1abae97 100755
--- a/trove.configure
+++ b/trove.configure
@@ -41,17 +41,13 @@ 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.
+##########################################################################
+# Configuration in /etc, which we need to do on all deployments.
+##########################################################################
+
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()
@@ -59,8 +55,9 @@ lua_escape()
echo -n "$1" | perl -pe 's/([-+\(\).%*?^$\[\]])/%$1/g'
}
-echo "Create /etc/trove-setup.sed for trove-early-setup"
-cat <<EOF > "$ROOT/etc/trove-setup.sed"
+echo "Creating /etc/trove-setup.sed"
+
+cat <<EOF > "$ROOT"/etc/trove-setup.sed
s/##TROVE_HOSTNAME##/$TROVE_ID/g
s/##MASON_HOST##/$MASON_ID/g
s/##MASON_PORT##/18755/g
@@ -75,6 +72,18 @@ EOF
##########################################################################
+echo "Performing substitutions in /etc"
+
+sed -f "$ROOT"/etc/trove-setup.sed -i \
+ "$ROOT"/etc/cgitrc \
+ "$ROOT"/etc/gitano-setup.clod \
+ "$ROOT"/etc/lorry.conf \
+ "$ROOT"/usr/share/gitano/skel/gitano-admin/*/*.lace \
+ "$ROOT"/usr/share/gitano/skel/gitano-admin/*/*.lua \
+ "$ROOT"/usr/share/gitano/skel/gitano-admin/users/*/user.conf
+
+##########################################################################
+
# 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
@@ -85,6 +94,17 @@ cat <<EOF >> "$ROOT/etc/hosts"
EOF
##########################################################################
+# Configuration of trove-early-setup
+#
+# We configure trove-early-setup so that it runs at first boot of an initial
+# deployment, to do the parts of Trove system setup that require running
+# commands from the deployed system.
+##########################################################################
+
+if [ "$UPGRADE" == "yes" ]; then
+ echo "Not configuring trove-early-setup because this is an upgrade."
+ exit 0
+fi
echo "Create /var/lib/trove-setup"
install -d -o 0 -g 0 -m 0755 "$ROOT/var/lib/trove-setup"
@@ -187,5 +207,7 @@ ExecStart=/sbin/reboot
Restart=no
EOF
+##########################################################################
+
ln -s "/etc/systemd/system/trove-early-setup.service" \
"$ROOT/etc/systemd/system/multi-user.target.wants/trove-early-setup.service"