Add missing console type values in appliance_v7.json and appliance_v8.json

This commit is contained in:
grossmj 2024-01-12 16:35:13 +11:00
parent ea16765b48
commit b1a13611f8
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD
2 changed files with 6 additions and 4 deletions

View File

@ -133,7 +133,7 @@
"title": "One KEY=VAR environment by line" "title": "One KEY=VAR environment by line"
}, },
"console_type": { "console_type": {
"enum": ["telnet", "vnc", "http", "https"], "enum": ["telnet", "vnc", "http", "https", "none"],
"title": "Type of console connection for the administration of the appliance" "title": "Type of console connection for the administration of the appliance"
}, },
"console_http_port": { "console_http_port": {
@ -344,7 +344,7 @@
"title": "Architecture emulated" "title": "Architecture emulated"
}, },
"console_type": { "console_type": {
"enum": ["telnet", "vnc", "spice"], "enum": ["telnet", "vnc", "spice", "spice+agent", "none"],
"title": "Type of console connection for the administration of the appliance" "title": "Type of console connection for the administration of the appliance"
}, },
"boot_priority": { "boot_priority": {

View File

@ -57,7 +57,8 @@
"telnet", "telnet",
"vnc", "vnc",
"http", "http",
"https" "https",
"none"
], ],
"title": "Type of console" "title": "Type of console"
}, },
@ -502,7 +503,8 @@
"telnet", "telnet",
"vnc", "vnc",
"spice", "spice",
"spice+agent" "spice+agent",
"none"
], ],
"title": "Type of console connection for the administration of the appliance" "title": "Type of console connection for the administration of the appliance"
}, },