[pve-devel] [PATCH manager 8/9] Use qcow2 as default disk format for clones fix: #1144

Emmanuel Kasper e.kasper at proxmox.com
Thu Jan 12 10:14:01 CET 2017


When using a file based storage, qcow2 has more features as raw,
this is why we recommend it for clones, similarly to when adding
new disk images.
---
 www/manager6/qemu/Clone.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www/manager6/qemu/Clone.js b/www/manager6/qemu/Clone.js
index af088b2..8af705c 100644
--- a/www/manager6/qemu/Clone.js
+++ b/www/manager6/qemu/Clone.js
@@ -97,6 +97,7 @@ Ext.define('PVE.window.Clone', {
             me.formatsel.setValue('raw');
             me.formatsel.setDisabled(true);
         } else {
+            me.formatsel.setValue('qcow2');
             me.formatsel.setDisabled(false);
         }
     },
-- 
2.1.4





More information about the pve-devel mailing list