allow to set option 'maxfiles'

This commit is contained in:
Dietmar Maurer
2012-03-21 07:17:11 +01:00
parent 6bf7eb0903
commit 446073f681
4 changed files with 27 additions and 4 deletions

View File

@ -168,6 +168,11 @@ __PACKAGE__->register_method ({
type => 'boolean',
optional => 1,
},
maxfiles => {
type => 'integer',
optional => 1,
minimum => 0,
},
shared => {
type => 'boolean',
optional => 1,
@ -270,6 +275,11 @@ __PACKAGE__->register_method ({
type => 'string', format => 'pve-storage-options',
optional => 1,
},
maxfiles => {
type => 'integer',
optional => 1,
minimum => 0,
},
digest => {
type => 'string',
description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',