[pve-devel] [PATCH V6 storage] Use a json format instead of hard	code regex.
    Wolfgang Link 
    w.link at proxmox.com
       
    Mon Sep 25 15:27:37 CEST 2017
    
    
  
---
 PVE/CLI/pvesm.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PVE/CLI/pvesm.pm b/PVE/CLI/pvesm.pm
index 9455595..57d10f4 100755
--- a/PVE/CLI/pvesm.pm
+++ b/PVE/CLI/pvesm.pm
@@ -183,7 +183,7 @@ __PACKAGE__->register_method ({
 	    base => {
 		description => "Snapshot to start an incremental stream from",
 		type => 'string',
-		pattern => qr/[a-z0-9_\-]{1,40}/,
+		format => 'pve-base-snapshot',
 		maxLength => 40,
 		optional => 1,
 	    },
@@ -258,7 +258,7 @@ __PACKAGE__->register_method ({
 	    base => {
 		description => "Base snapshot of an incremental stream",
 		type => 'string',
-		pattern => qr/[a-z0-9_\-]{1,40}/,
+		format => 'pve-base-snapshot',
 		maxLength => 40,
 		optional => 1,
 	    },
-- 
2.11.0
    
    
More information about the pve-devel
mailing list