From 28a2669d9b455b80fcd3bcc8bf87564aea7bf9f4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Fri, 18 Mar 2016 11:38:23 +0100 Subject: [PATCH] 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... --- src/PVE/JSONSchema.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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' }, -- 2.39.2