mirror of
https://github.com/rancher/os.git
synced 2025-09-20 18:13:35 +00:00
Merge pull request #578 from imikushin/qind
fix: `scripts/run --qind` runs plain qemu (instead of qind)
This commit is contained in:
@@ -36,6 +36,7 @@ while [ "$#" -gt 0 ]; do
|
|||||||
--xhyve)
|
--xhyve)
|
||||||
if [ -x $(which xhyve) ]; then
|
if [ -x $(which xhyve) ]; then
|
||||||
XHYVE=1
|
XHYVE=1
|
||||||
|
QEMU=0
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
--qemu)
|
--qemu)
|
||||||
@@ -45,6 +46,7 @@ while [ "$#" -gt 0 ]; do
|
|||||||
;;
|
;;
|
||||||
--qind)
|
--qind)
|
||||||
QIND=1
|
QIND=1
|
||||||
|
QEMU=0
|
||||||
;;
|
;;
|
||||||
--kvm)
|
--kvm)
|
||||||
KVM=1
|
KVM=1
|
||||||
|
@@ -20,12 +20,14 @@ while [ "$#" -gt 0 ]; do
|
|||||||
;;
|
;;
|
||||||
--xhyve)
|
--xhyve)
|
||||||
XHYVE=1
|
XHYVE=1
|
||||||
|
QEMU=0
|
||||||
;;
|
;;
|
||||||
--qemu)
|
--qemu)
|
||||||
QEMU=1
|
QEMU=1
|
||||||
;;
|
;;
|
||||||
--qind)
|
--qind)
|
||||||
QIND=1
|
QIND=1
|
||||||
|
QEMU=0
|
||||||
;;
|
;;
|
||||||
--key)
|
--key)
|
||||||
shift 1
|
shift 1
|
||||||
|
Reference in New Issue
Block a user