1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Fix you can not update Dynamips and IOU node

Fix https://github.com/GNS3/gns3-gui/issues/1239
This commit is contained in:
Julien Duponchelle 2016-05-16 17:53:40 +02:00
parent 26c7aedba6
commit d97325b113
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8
2 changed files with 20 additions and 0 deletions

View File

@ -302,6 +302,18 @@ VM_UPDATE_SCHEMA = {
"type": ["string", "null"],
"minLength": 1,
},
"dynamips_id": {
"description": "Dynamips ID",
"type": "integer"
},
"startup_config": {
"description": "Path to the IOS startup configuration file.",
"type": "string",
},
"private_config": {
"description": "Path to the IOS private configuration file.",
"type": "string",
},
"startup_config_content": {
"description": "Content of IOS startup configuration file",
"type": "string",

View File

@ -143,6 +143,14 @@ IOU_UPDATE_SCHEMA = {
"description": "Always up ethernet interface",
"type": ["boolean", "null"]
},
"startup_config": {
"description": "Path to the startup-config of IOU",
"type": ["string", "null"]
},
"private_config": {
"description": "Path to the private-config of IOU",
"type": ["string", "null"]
},
"startup_config_content": {
"description": "Startup-config of IOU",
"type": ["string", "null"]