aboutsummaryrefslogtreecommitdiff
path: root/scripts/try.sh
blob: da5c31e6744e41ee3905785db2082298fb11ef15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e

vm="$1"

if [[ -z "$vm" ]]; then
	echo "Usage: $0 <VM>"
	exit 1
fi

source scripts/logenv.sh

# --debug

exec /usr/lib/virtualbox/VirtualBoxVM --startvm "$vm"