[pve-devel] [PATCH V2 pve-storage] Use json format instead of hard code regex.
Wolfgang Link
w.link at proxmox.com
Thu Aug 24 11:35:58 CEST 2017
---
PVE/CLI/pvesm.pm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/PVE/CLI/pvesm.pm b/PVE/CLI/pvesm.pm
index 9455595..66ae955 100755
--- a/PVE/CLI/pvesm.pm
+++ b/PVE/CLI/pvesm.pm
@@ -183,8 +183,7 @@ __PACKAGE__->register_method ({
base => {
description => "Snapshot to start an incremental stream from",
type => 'string',
- pattern => qr/[a-z0-9_\-]{1,40}/,
- maxLength => 40,
+ format => 'pve_base_snapshot',
optional => 1,
},
snapshot => {
@@ -258,8 +257,7 @@ __PACKAGE__->register_method ({
base => {
description => "Base snapshot of an incremental stream",
type => 'string',
- pattern => qr/[a-z0-9_\-]{1,40}/,
- maxLength => 40,
+ format => 'pve_base_snapshot',
optional => 1,
},
'with-snapshots' => {
--
2.11.0
More information about the pve-devel
mailing list