summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-08 19:40:33 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-08 19:40:33 +0000
commit4151c7c9fa048421189895472328b88589c9b645 (patch)
tree7f8326106e091aa3712d00a582804192c330547f
parent731dfb6c3d741e282d6d2577db3329b3833abec3 (diff)
More vmbuild fixes.
-rwxr-xr-xvmbuild17
1 files changed, 10 insertions, 7 deletions
diff --git a/vmbuild b/vmbuild
index 563fe43..3e6cec9 100755
--- a/vmbuild
+++ b/vmbuild
@@ -6,19 +6,22 @@ if [ "$1" == "" -o "$2" == "" ]; then
exit 1
fi
-IFS='-' read distro version bits <<< $1
+target=$1
+
+IFS='-' read distro version bits <<< $target
checkout=$2
output=$3
-if [ "$bits" == "32" ]; then
- port=2000
-elif [ "$bits" == "64" ]; then
- port=2001
-else
+case $target in
+fedora-22-32) port=2000;;
+fedora-22-64) port=2001;;
+fedora-23-32) port=2002;;
+fedora-23-64) port=2003;;
+*)
echo "Unrecognised bit depth $bits"
exit 1
-fi
+esac
nohup vboxheadless --startvm $target &
vbox=$!