diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/g-i-installation.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index bc6213b5..94bb8819 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -1340,7 +1340,10 @@ case $NAME in # kill qemu and image # set -x - sudo kill -9 $(ps fax | grep [q]emu-system | grep "vnc=$DISPLAY " 2>/dev/null | awk '{print $1}') || true + TOKILL=$(ps fax | grep [q]emu-system | grep "vnc=$DISPLAY " 2>/dev/null | awk '{print $1}') + if [ ! -z "$TOKILL" ] ; then + sudo kill -9 "$TOKILL" || true + fi set +x if [ ! -z "$IMAGE" ] ; then sudo umount -l $IMAGE_MNT || true |