From e9c2a76f43d8afa82b1e9ff3ec8c407a60cc07eb Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Wed, 20 Jan 2016 13:17:34 +0100 Subject: [PATCH] Fix error when setting Qemu VM boot to 'cd' (HDD or CD/DVD-ROM) Fix #400 --- gns3server/schemas/qemu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gns3server/schemas/qemu.py b/gns3server/schemas/qemu.py index 89362fbe..a50f9271 100644 --- a/gns3server/schemas/qemu.py +++ b/gns3server/schemas/qemu.py @@ -296,7 +296,7 @@ QEMU_UPDATE_SCHEMA = { }, "boot_priority": { "description": "QEMU boot priority", - "enum": ["c", "d"] + "enum": ["c", "d", "n", "cn", "cd"] }, "ram": { "description": "amount of RAM in MB", @@ -468,7 +468,7 @@ QEMU_OBJECT_SCHEMA = { }, "boot_priority": { "description": "QEMU boot priority", - "enum": ["c", "d"] + "enum": ["c", "d", "n", "cn", "cd"] }, "vm_directory": { "decription": "Path to the VM working directory",