]> git.proxmox.com Git - qemu-server.git/commitdiff
fix 'qm unlink' command syntax
authorDietmar Maurer <dietmar@proxmox.com>
Wed, 4 Dec 2013 05:16:12 +0000 (06:16 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 4 Dec 2013 05:21:33 +0000 (06:21 +0100)
It is not possible to use idlist as argument, because our getoption parser
can't handle that. So we simply pass idlist as option, for example

 # qm unlink 100 --idlist 'ide2,ide3'

changelog.Debian
qm

index 5692ec7e3b2b1577e6d026e616c8f29b3f5e45fa..23273a86c9109ec3392c9664a4b904fcc698a050 100644 (file)
@@ -1,6 +1,8 @@
 qemu-server (3.1-11) unstable; urgency=low
 
   * depend on pve-qemu-kvm >= 1.7-1
+  
+  * fix 'qm unlink' command syntax
 
  -- Proxmox Support Team <support@proxmox.com>  Tue, 03 Dec 2013 10:48:33 +0100
 
diff --git a/qm b/qm
index 6830c6c155afdd00539a397c5fcf88b8eed32c1d..297617df486e77cd34aead8f6cd7bdea9b1597bd 100755 (executable)
--- a/qm
+++ b/qm
@@ -415,7 +415,7 @@ my $cmddef = {
 
     move_disk => [ "PVE::API2::Qemu", 'move_vm_disk', ['vmid', 'disk', 'storage'], { node => $nodename }, $upid_exit ],
 
-    unlink => [ "PVE::API2::Qemu", 'unlink', ['vmid', 'idlist'], { node => $nodename } ],
+    unlink => [ "PVE::API2::Qemu", 'unlink', ['vmid'], { node => $nodename } ],
 
     config => [ "PVE::API2::Qemu", 'vm_config', ['vmid'], 
                { node => $nodename }, sub {