tweak install-invirt.sh
authorGreg Price <price@mit.edu>
Sat, 31 Jan 2009 08:17:56 +0000 (03:17 -0500)
committerGreg Price <price@mit.edu>
Sat, 31 Jan 2009 08:17:56 +0000 (03:17 -0500)
Don't try to install invirt-host-master, because we need most
of the script for sysvms too.

Also, minimal installs lack wget, so install that first.

svn path=/trunk/scripts/install-invirt/; revision=2051

install-invirt.sh

index 54f7268..cdecfe4 100755 (executable)
@@ -17,8 +17,8 @@ if [ `id -u` != "0" ]; then
     error 1 "You must run the Invirt installer as root."
 fi
 
-output "Installing the dependency for the Invirt installer..."
-aptitude install lsb-release
+output "Installing the dependencies for the Invirt installer..."
+aptitude install lsb-release wget
 DISTRO=`lsb_release -cs`
 case $DISTRO in
     hardy)
@@ -60,8 +60,8 @@ done
 
 aptitude update
 
-output "Installing Invirt..."
-DEBIAN_FRONTEND=noninteractive aptitude install invirt-host-master
+#output "Installing Invirt..."
+#DEBIAN_FRONTEND=noninteractive aptitude install invirt-host-master
 
 output "Invirt installation done!"
 output ""