Index: C:\Users\web\Documents\www\exarnet.net\install.sh
--- C:\Users\web\Documents\www\exarnet.net\install.sh 
+++ C:\Users\web\Documents\www\exarnet.net\install.sh (unsaved) 
@@ -20,12 +20,14 @@
 
 ########################################################################
 # basic variables, change before release
-AEGIR_DOMAIN=aegir.example.com 
+HOME=/www/aegir
+PHP_LIBRARY=/usr/local/bin/php
+AEGIR_DOMAIN=aegir.hostname.tld
 AEGIR_VERSION=HEAD
 AEGIR_HOME=$HOME
 WEB_GROUP=www-data
-DRUSH="$AEGIR_HOME/drush/drush.php"
-DRUSH_VERSION=All-Versions-2.1
+DRUSH="$AEGIR_HOME/drush/drush.php --debug --php=$PHP_LIBRARY"
+DRUSH_VERSION=All-Versions-HEAD
 # when adding a variable here, add it to the display below
 
 # no configurable settings below this line
@@ -104,6 +106,7 @@
  * you have read INSTALL.txt and prepared the platform accordingly
  * you are running as your "aegir" user
  * the following settings are correct:
+PHP_LIBRARY=$PHP_LIBRARY
 AEGIR_DOMAIN=$AEGIR_DOMAIN
 AEGIR_VERSION=$AEGIR_VERSION
 AEGIR_HOME=$AEGIR_HOME
@@ -132,14 +135,14 @@
 	DRUSH=drush
 elif [ -x $DRUSH ] ; then
 	msg "Drush found in $DRUSH, good"
-	DRUSH="php $AEGIR_HOME/drush/drush.php"
+	DRUSH="php $AEGIR_HOME/drush/drush.php --debug --php=$PHP_LIBRARY"
 else
 	msg "Installing drush in $AEGIR_HOME"
 	cd $AEGIR_HOME
 	wget http://ftp.drupal.org/files/projects/drush-$DRUSH_VERSION.tar.gz
 	tar -xzf drush-$DRUSH_VERSION.tar.gz
 	rm drush-$DRUSH_VERSION.tar.gz
-	DRUSH="php $AEGIR_HOME/drush/drush.php"
+	DRUSH="php $AEGIR_HOME/drush/drush.php --debug --php=$PHP_LIBRARY"
 fi
 
 if $DRUSH help > /dev/null ; then
@@ -152,7 +155,7 @@
 if ! $DRUSH help | grep -q "^ make" ; then
 	msg "Installing drush make in $AEGIR_HOME/.drush"
 	mkdir -p $AEGIR_HOME/.drush
-	$DRUSH dl drush_make --destination=$AEGIR_HOME/.drush
+	$DRUSH dl drush_make-6.x-2.0-beta2 --destination=$AEGIR_HOME/.drush
 else
 	msg "Drush make already seems to be installed"
 fi
@@ -180,6 +183,7 @@
 	chmod 2770 sites/$AEGIR_DOMAIN/files
 	chgrp $WEB_GROUP sites/$AEGIR_DOMAIN/settings.php
 	chgrp $WEB_GROUP sites/$AEGIR_DOMAIN/files
+        ln -s $HOSTMASTER_DIR $AEGIR_HOME/public_html
 fi
 
 if ! [ -e $AEGIR_HOME/config/vhost.d/$AEGIR_DOMAIN ]; then
@@ -195,3 +199,4 @@
 Some of the instructions given, you will already have completed, but carefully
 read each step in turn to ensure you don't miss anything.
 EOF
+
