Skip to content

Commit bf8c52b

Browse files
committed
chromiumos-vm: kill process only if -k flag is given
1 parent 2d56d39 commit bf8c52b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chromiumos-vm.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env bash
22
# -*- coding: UTF-8 -*-
33
IMAGE=${1}
4-
KILL=${2:-0}
4+
KILL=${2:-""}
55
MEM="4G"
66
NET="10.0.2.0/27"
77
SSHPORT=9222
88
PIDFILE=/tmp/qemu_$SSHPORT.pid
99

1010
set -eu
1111

12-
if [[ ${KILL} != 0 ]]; then
12+
if [[ ${KILL} == "-k" ]]; then
1313
PID=`sudo cat $PIDFILE`
1414
echo "Killing QEMU $PID"
1515
sudo kill $PID

0 commit comments

Comments
 (0)