From: Wolfgang Bumiller Date: Fri, 18 Mar 2016 10:38:23 +0000 (+0100) Subject: cleanup: full path package references to self X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=28a2669d9b455b80fcd3bcc8bf87564aea7bf9f4 cleanup: full path package references to self This started happening when moving the 'pve-storage-id' option from pve-storage and curously kept on going since then... --- diff --git a/src/PVE/JSONSchema.pm b/src/PVE/JSONSchema.pm index f9b7a5a..8cb07e1 100644 --- a/src/PVE/JSONSchema.pm +++ b/src/PVE/JSONSchema.pm @@ -71,19 +71,19 @@ register_standard_option('pve-iface', { minLength => 2, maxLength => 20, }); -PVE::JSONSchema::register_standard_option('pve-storage-id', { +register_standard_option('pve-storage-id', { description => "The storage identifier.", type => 'string', format => 'pve-storage-id', }); -PVE::JSONSchema::register_standard_option('pve-config-digest', { +register_standard_option('pve-config-digest', { description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.', type => 'string', optional => 1, maxLength => 40, # sha1 hex digest lenght is 40 }); -PVE::JSONSchema::register_standard_option('extra-args', { +register_standard_option('extra-args', { description => "Extra arguments as array", type => 'array', items => { type => 'string' },