#!/bin/sh # postinst script for hostmaster # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # Source debconf library. . /usr/share/debconf/confmodule if [ "$DPKG_DEBUG" = "developer" ]; then set -x fi VARLIB="/var/aegir" case "$1" in configure) # fetch the version number from provision. the line we're looking for looks like this # version=6.x-1.9 # this obviously doesn't work for git releases VERSION=`sed -n '/^version/{s/^.*= *//;p}' /usr/share/drush/commands/provision/provision.info` FLAGS="--yes" if [ "$DPKG_DEBUG" = "developer" ]; then FLAGS="$FLAGS --debug" fi db_get "aegir/makefile" if [ ! -z "$RET" ]; then FLAGS="$FLAGS --makefile='$RET'" fi db_get "aegir/webserver" if [ ! -z "$RET" ]; then if [ "$RET" = 'apache2' ]; then RET='apache' # convert argument to something aegir can understand fi FLAGS="$FLAGS --http_service_type='$RET'" WEBSERVER="$RET" fi # make sure the configuration file exists before symlinking it in place (below) touch $VARLIB/config/$WEBSERVER.conf # fix permissions on installed directories chown aegir:aegir "$VARLIB" "$VARLIB/config" "$VARLIB/config/$WEBSERVER.conf" # flush the drush cache to find new commands su -s /bin/sh aegir -c 'drush cc drush' TEMPFILE=`tempfile` su -s /bin/sh aegir -c 'drush --pipe @hostmaster status 2>/dev/null | egrep "site_uri|drupal_root"' >> $TEMPFILE || true if grep -q 'site_uri' $TEMPFILE; then # upgrade db_stop . $TEMPFILE echo "Aegir frontend (@hostmaster) site detected in $drupal_root" # make those paths canonical to make sure we can compare correctly NEW_PLATFORM=`readlink -f "$VARLIB/hostmaster-$VERSION"` drupal_root=`readlink -f $drupal_root` # we upgrade only if the target platform doesn't exit *OR* # if it's not the current platform if [ -d "$NEW_PLATFORM" ] && [ "$drupal_root" = "$NEW_PLATFORM" ]; then echo "it seems to be the same version as the one we're trying to install, not upgrading" else echo "upgrading the frontend from $drupal_root to $NEW_PLATFORM" if su -s /bin/sh aegir -c 'drush @hostmaster pm-list --status=enabled --pipe' | grep -q hosting_queued; then service hosting-queued stop fi cd "$drupal_root" su -s /bin/sh aegir -c "drush hostmaster-migrate $FLAGS '$site_uri' '$NEW_PLATFORM'" echo "upgrade finished, old platform left in $drupal_root" # restart daemon if enabled if su -s /bin/sh aegir -c 'drush @hostmaster pm-list --status=enabled --pipe' | grep -q hosting_queued; then service hosting-queued start fi fi else # fresh install db_get "aegir/site" if [ ! -z "$RET" ]; then site_uri="$RET" fi db_get "aegir/db_host" AEGIR_DB_HOST="$RET" db_get "aegir/db_user" AEGIR_DB_USER="$RET" db_get "aegir/db_password" AEGIR_DB_PASS="$RET" db_get "aegir/email" EMAIL="$RET" db_go # forget the DB password in debconf storage db_reset aegir/db_password || true db_fset aegir/db_password "seen" "true" || true db_stop if [ -d $VARLIB/.drush/provision ]; then echo "existing provision in $VARLIB/.drush/provision detected, move away and try again" exit 1 fi echo "installing the Aegir frontend (Drupal with the hostmaster profile), please wait..." if [ "$DPKG_DEBUG" = "developer" ]; then DEBUG="--debug" fi # pass data through JSON for extra security su -s /bin/sh aegir -c "cd $VARLIB && drush hostmaster-install $FLAGS --backend $site_uri 2>&1 | drush backend-parse $DEBUG" <&1 | grep -q 'Drupal bootstrap.*Successful'; then echo 'Aegir frontend bootstrap correctly, operation was a success!' echo 'Use this URL to login on your new site:' su -s /bin/sh aegir -c 'drush @hostmaster uli' else echo 'Aegir frontend failed to bootstrap, something went wrong!' echo 'Look at the log above for clues or run with DPKG_DEBUG=developer' exit 1 fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0