]> git.proxmox.com Git - pve-manager.git/commitdiff
allow all storages with content type 'images' for containers
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 7 Aug 2015 08:34:56 +0000 (10:34 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 7 Aug 2015 08:34:56 +0000 (10:34 +0200)
New LXC containers can use raw images, so the distinction between 'images'
and 'rootdir' does not really makes sense now.

www/manager/lxc/CreateWizard.js

index d0373167a03d2d20d9459c2fc18e6f12c6ddbcbd..77df9913642a1b166791e98f708003e0bc46c5cd 100644 (file)
@@ -18,7 +18,7 @@ Ext.define('PVE.lxc.CreateWizard', {
        var storagesel = Ext.create('PVE.form.StorageSelector', {
            name: 'storage',
            fieldLabel: gettext('Storage'),
-           storageContent: 'rootdir',
+           storageContent: 'images,rootdir',
            autoSelect: true,
            allowBlank: false
        });