5
0
mirror of git://git.proxmox.com/git/pve-storage.git synced 2025-02-04 17:47:17 +03:00

Add content type rootfs to RBD and extend manual

This commit is contained in:
Wolfgang Link 2015-08-25 09:47:53 +02:00 committed by Dietmar Maurer
parent 99d4c75346
commit 1f79bb07f1
2 changed files with 2 additions and 3 deletions

View File

@ -16,7 +16,6 @@ cfs_register_file ('storage.cfg',
sub { __PACKAGE__->parse_config(@_); },
sub { __PACKAGE__->write_config(@_); });
# fixme: remove rootdir code (we now use subvols)
my $defaultData = {
propertyList => {
@ -24,7 +23,7 @@ my $defaultData = {
storage => get_standard_option('pve-storage-id'),
nodes => get_standard_option('pve-node-list', { optional => 1 }),
content => {
description => "Allowed content types.",
description => "Allowed content types. Note: value 'rootdir' is used for Containers, and value 'images' for KVM-Qemu VM's.\n",
type => 'string', format => 'pve-storage-content-list',
optional => 1,
},

View File

@ -197,7 +197,7 @@ sub type {
sub plugindata {
return {
content => [ {images => 1}, { images => 1 }],
content => [ {images => 1, rootdir => 1}, { images => 1 }],
};
}