1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 06:11:12 +00:00

Merge pull request #1857 from SvenDowideit/stop-ctrl-c-in-qemu-exiting-vm

Prevent ctrl-c in qemu from exiting vm - use ctrl-] instead
This commit is contained in:
Sven Dowideit
2017-05-17 12:28:33 +10:00
committed by GitHub

View File

@@ -265,6 +265,11 @@ if [ "$QEMU" == "1" ]; then
else
INSTALLED_ARGS="-kernel ${KERNEL} -initrd ${INITRD}"
fi
# don't quit qemu using ctrl-c
stty intr ^]
stty susp ^]
stty quit ^]
set -x
exec qemu-system-${QEMUARCH} \
${DISPLAY_OPTS} \
@@ -294,6 +299,10 @@ elif [ "$BOOT_ISO" == "1" ] ||
echo "----- $ISO_OPTS"
fi
set -x
# don't quit qemu using ctrl-c
stty intr ^]
stty susp ^]
stty quit ^]
exec qemu-system-${QEMUARCH} \
${DISPLAY_OPTS} \
${CLOUD_CONFIG_DISK} \