[pve-devel] r5589 - pve-common/trunk/data/PVE
svn-commits at proxmox.com
svn-commits at proxmox.com
Wed Feb 23 09:25:32 CET 2011
Author: dietmar
Date: 2011-02-23 09:25:32 +0100 (Wed, 23 Feb 2011)
New Revision: 5589
Modified:
pve-common/trunk/data/PVE/JSONSchema.pm
Log:
add 'world' perm
Modified: pve-common/trunk/data/PVE/JSONSchema.pm
===================================================================
--- pve-common/trunk/data/PVE/JSONSchema.pm 2011-02-22 14:01:40 UTC (rev 5588)
+++ pve-common/trunk/data/PVE/JSONSchema.pm 2011-02-23 08:25:32 UTC (rev 5589)
@@ -693,9 +693,9 @@
additionalProperties => 0,
properties => {
user => {
- description => "A simply way to allow access for 'all' users. The special value 'arg' allows access for the user specified in the 'username' parameter. This is useful to allow access to things owned by a user, like changing the user password.",
+ description => "A simply way to allow access for 'all' users. The special value 'arg' allows access for the user specified in the 'username' parameter. This is useful to allow access to things owned by a user, like changing the user password. Value 'world' is used to allow access without credientials.",
type => 'string',
- enum => ['all', 'arg'],
+ enum => ['all', 'arg', 'world'],
optional => 1,
},
path => { type => 'string', optional => 1, requires => 'privs' },
More information about the pve-devel
mailing list