From e313091bde7449d6268076eab7249a1435209400 Mon Sep 17 00:00:00 2001 From: Ivan Mikushin Date: Wed, 23 Sep 2015 11:57:16 +0500 Subject: [PATCH] fix: `scripts/run --qind` runs plain qemu (instead of qind) --- scripts/run | 2 ++ scripts/ssh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/scripts/run b/scripts/run index 518e4635..08a860b7 100755 --- a/scripts/run +++ b/scripts/run @@ -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 diff --git a/scripts/ssh b/scripts/ssh index 29065761..933cab05 100755 --- a/scripts/ssh +++ b/scripts/ssh @@ -20,12 +20,14 @@ while [ "$#" -gt 0 ]; do ;; --xhyve) XHYVE=1 + QEMU=0 ;; --qemu) QEMU=1 ;; --qind) QIND=1 + QEMU=0 ;; --key) shift 1