From 9da5aa110743eb8c72ccf3992282a1c462315616 Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 22 May 2014 10:54:34 -0600 Subject: [PATCH] Fixes validation issue with c2600 XM chassis. --- gns3server/modules/dynamips/schemas/vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/modules/dynamips/schemas/vm.py b/gns3server/modules/dynamips/schemas/vm.py index 99b9096c..581a4d65 100644 --- a/gns3server/modules/dynamips/schemas/vm.py +++ b/gns3server/modules/dynamips/schemas/vm.py @@ -35,7 +35,7 @@ VM_CREATE_SCHEMA = { "description": "router chassis model", "type": "string", "minLength": 1, - "pattern": "^[0-9]{4}$" + "pattern": "^[0-9]{4}(XM)?$" }, "image": { "description": "path to the IOS image file",