13
0
livetrax/tools/linux_packaging/run
Paul Davis da52e3fb4e more automated build stuff
git-svn-id: svn://localhost/ardour2/branches/3.0@9179 d708f5d6-7413-0410-9779-e7cbd77b26cf
2011-03-21 19:55:06 +00:00

18 lines
541 B
Bash

#!/bin/sh
vbm=VBoxManage
basedir=/home/harrison/ardour/3.0/tools/linux_packaging
tooldir=$basedir/tools/linux_packaging
u=harrison
p=harrison
for VM in Build_64bit_804s ; do
$vbm startvm $VM --type headless
echo "Waiting for guest control to be available (12 seconds) ... "
sleep 12
echo "Running $tooldir/noderun $basedir on $VM ... "
$vbm guestcontrol exec $VM /bin/sh --arguments $tooldir/noderun --arguments $basedir --username $u --password $p --wait-for stdout
status=$?
$vbm controlvm $VM savestate
done