projects
/
qemu-server.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51a6f63
)
bug 597: hotplug fix
author
Wolfgang Link
<w.link@proxmox.com>
Tue, 10 Feb 2015 11:59:22 +0000
(12:59 +0100)
committer
Dietmar Maurer
<dietmar@proxmox.com>
Tue, 10 Feb 2015 12:01:24 +0000
(13:01 +0100)
wrap params in dopple quotes, so spaces will accept.
Signed-off-by: Wolfgang Link <w.link@proxmox.com>
PVE/QemuServer.pm
patch
|
blob
|
blame
|
history
diff --git
a/PVE/QemuServer.pm
b/PVE/QemuServer.pm
index 556bbb75151c9341036d6a22c428ae802aaccf89..59441e19ab01cbcc9d0a52fee863cea02fa7f47a 100644
(file)
--- a/
PVE/QemuServer.pm
+++ b/
PVE/QemuServer.pm
@@
-3384,7
+3384,7
@@
sub qemu_driveadd {
my ($storecfg, $vmid, $device) = @_;
my $drive = print_drive_full($storecfg, $vmid, $device);
- my $ret = vm_human_monitor_command($vmid, "drive_add auto
$drive
");
+ my $ret = vm_human_monitor_command($vmid, "drive_add auto
\"$drive\"
");
# If the command succeeds qemu prints: "OK"
return 1 if $ret =~ m/OK/s;