2f3b1587c820e9b6306be5407cce9cea4e730555
[ardour.git] / tools / linux_packaging / run
1 #!/bin/sh
2
3 vbm=VBoxManage
4 basedir=/home/harrison/ardour/3.0/tools/linux_packaging
5 tooldir=$basedir/tools/linux_packaging
6 u=harrison
7 p=harrison
8
9 for VM in Build_64bit_804s ; do
10     $vbm startvm $VM --type headless
11     echo "Waiting for guest control to be available (12 seconds) ... "
12     sleep 12
13     echo "Running $tooldir/noderun $basedir on $VM ... "
14     $vbm guestcontrol exec $VM /bin/sh --arguments $tooldir/noderun --arguments $basedir --username $u --password $p --wait-for stdout
15     status=$?
16     $vbm controlvm $VM savestate
17 done