From ef16fd26e0ca608f91803bf05efb61a85bec7431 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Tue, 3 Apr 2018 09:44:03 +0100 Subject: [PATCH] scripts: Re-add tags for hypervisor config script PR #12 inadvertently removed the required tags for two of the qemu config options. Fixes #13. Signed-off-by: James O. D. Hunt --- scripts/configure-hypervisor.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/configure-hypervisor.sh b/scripts/configure-hypervisor.sh index 5b83bb95d..ddab51918 100755 --- a/scripts/configure-hypervisor.sh +++ b/scripts/configure-hypervisor.sh @@ -282,7 +282,7 @@ main() # SECURITY: Don't build a static binary (lowers security) # needed if qemu version is less than 2.7 if [ ${qemu_version_major} -eq 2 ] && [ ${qemu_version_minor} -lt 7 ]; then - qemu_options+=(--disable-static) + qemu_options+=(security:--disable-static) fi # Not required as "-uuid ..." is always passed to the qemu binary @@ -325,7 +325,7 @@ main() # Always strip binaries # needed if qemu version is less than 2.7 if [ ${qemu_version_major} -eq 2 ] && [ ${qemu_version_minor} -lt 7 ]; then - qemu_options+=(--enable-strip) + qemu_options+=(size:--enable-strip) fi # Support Ceph RADOS Block Device (RBD)