[pve-devel] [PATCH pve-network 3/7] retrict vnet name to 8 characters

Alexandre Derumier aderumier at odiso.com
Tue May 19 15:48:17 CEST 2020


Signed-off-by: Alexandre Derumier <aderumier at odiso.com>
---
 PVE/Network/SDN/VnetPlugin.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/PVE/Network/SDN/VnetPlugin.pm b/PVE/Network/SDN/VnetPlugin.pm
index b0280fc..169f694 100644
--- a/PVE/Network/SDN/VnetPlugin.pm
+++ b/PVE/Network/SDN/VnetPlugin.pm
@@ -24,7 +24,7 @@ sub parse_sdn_vnet_id {
         return undef if $noerr;
         die "vnet ID '$id' contains illegal characters\n";
     }
-    die "vnet ID '$id' can't be more length than 10 characters\n" if length($id) > 10;
+    die "vnet ID '$id' can't be more length than 8 characters\n" if length($id) > 10;
     return $id;
 }
 
-- 
2.20.1




More information about the pve-devel mailing list