aboutsummaryrefslogtreecommitdiffstats
path: root/modules/testvm/files/_vm
blob: a348259661906389eb49ed416d7e5b693b639a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh

test -z $vmname && exit 1

vmdir="$HOME/VMs"
piddir="$HOME/PIDs"
logdir="$HOME/log"
vmfile="$vmdir/$vmname"
pidfile="$piddir/$vmname"
logfile="$logdir/$vmname"
qemucmd="qemu-kvm -nographic -pidfile $pidfile -hda $vmfile -net nic,vlan=0 -net user,vlan=0,hostfwd=tcp::$sshport-:22 $QEMUOPT"

function running()
{
	test -f $pidfile || return 1
	pid=`cat $pidfile`
	test -d "/proc/$pid"
}

function stop()
{
	test -f $pidfile || return 1
	pid=`cat $pidfile`
	kill "$pid" && rm -f "$pidfile"
}

function start()
{
	running && echo "VM is already running" && return 1
	nohup $qemucmd > $logfile 2>&1 &
}

case "$1" in
	start)
		start
		;;
	stop)
		stop
		;;
	restart)
		start
		stop
		;;
	status)
		running
		vmrunning=$?
		test $vmrunning -eq 0 && echo "VM $vmname is running"
		test $vmrunning -eq 0 || echo "VM $vmname is stopped"
		;;
	ssh)
		running && ssh -p $sshport localhost
		;;
esac