From 68335b6217f96cbfca8a89e924335d37e2c7d0f6 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sun, 21 May 2017 13:58:02 -0400 Subject: build_disk_io_params needs the name of the variable, not its value I have no idea how this ever worked in the past! --- kvm-manager | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvm-manager b/kvm-manager index 4c48e8e..1747a38 100755 --- a/kvm-manager +++ b/kvm-manager @@ -141,7 +141,7 @@ up() { for disk in HD{B..Z}; do index=$(( $index + 1 )) if [ -b "${!disk}" ]; then - build_disk_io_params "${!disk}" + build_disk_io_params "${disk}" KVMARGS="$KVMARGS -drive file=${!disk},if=virtio,cache=none,index=$index,format=raw${disk_io_params}" fi done -- cgit v1.2.3