[Fusionforge-commits] r12405 - trunk/src

Christian Bayle cbayle at fusionforge.org
Sun Feb 27 19:43:57 CET 2011


Author: cbayle
Date: 2011-02-27 19:43:56 +0100 (Sun, 27 Feb 2011)
New Revision: 12405

Modified:
   trunk/src/install.sh
Log:
Make install more verbose


Modified: trunk/src/install.sh
===================================================================
--- trunk/src/install.sh	2011-02-27 18:43:41 UTC (rev 12404)
+++ trunk/src/install.sh	2011-02-27 18:43:56 UTC (rev 12405)
@@ -66,16 +66,23 @@
 	echo "Installing FusionForge ...";
 fi
 
+echo "Install type = $type"
 if [ "$type" = "redhat" ]
 then
+	echo "Installing php"
 	yum -y install php
+	echo "Running php fusionforge-install-1-deps.php $deps"
 	php fusionforge-install-1-deps.php $deps
+	echo "Running php fusionforge-install-2.php "$hostname" apache apache"
 	php fusionforge-install-2.php "$hostname" apache apache
 
 	if [ $mode = "install" ]
 	then
+		echo "Running php fusionforge-install-3-db.php"
 		php fusionforge-install-3-db.php
+		echo "Running php db/upgrade-db.php"
 		php db/upgrade-db.php
+		echo "Running php fusionforge-install-4-config.php"
 		php fusionforge-install-4-config.php
 
 		# Post installation fixes.
@@ -93,6 +100,7 @@
 		cp plugins/*/etc/cron.d/* /etc/cron.d/
 		service crond reload
 	else
+		echo "Running php db/upgrade-db.php"
 		php db/upgrade-db.php
 	fi
 elif [ "$type" = "suse" ]




More information about the Fusionforge-commits mailing list