1
0
mirror of https://github.com/rancher/os.git synced 2025-09-19 09:22:40 +00:00

Merge pull request #578 from imikushin/qind

fix: `scripts/run --qind` runs plain qemu (instead of qind)
This commit is contained in:
Ivan Mikushin
2015-09-23 11:58:06 +05:00
2 changed files with 4 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ while [ "$#" -gt 0 ]; do
--xhyve)
if [ -x $(which xhyve) ]; then
XHYVE=1
QEMU=0
fi
;;
--qemu)
@@ -45,6 +46,7 @@ while [ "$#" -gt 0 ]; do
;;
--qind)
QIND=1
QEMU=0
;;
--kvm)
KVM=1

View File

@@ -20,12 +20,14 @@ while [ "$#" -gt 0 ]; do
;;
--xhyve)
XHYVE=1
QEMU=0
;;
--qemu)
QEMU=1
;;
--qind)
QIND=1
QEMU=0
;;
--key)
shift 1