From 01db2d2a866a4e8ba413ff661b61db284dc6896b Mon Sep 17 00:00:00 2001 From: Jeremy Grossmann Date: Mon, 17 Aug 2020 12:45:57 +0930 Subject: [PATCH] Create config disk property false by default for Qemu templates Ref https://github.com/GNS3/gns3-gui/issues/3035 (cherry picked from commit a2e884e315ca25432ba5612142d60ce8e1dd7911) --- gns3server/schemas/qemu_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/schemas/qemu_template.py b/gns3server/schemas/qemu_template.py index 4202f66c..496ee06a 100644 --- a/gns3server/schemas/qemu_template.py +++ b/gns3server/schemas/qemu_template.py @@ -186,7 +186,7 @@ QEMU_TEMPLATE_PROPERTIES = { "create_config_disk": { "description": "Automatically create a config disk on HDD disk interface (secondary slave)", "type": "boolean", - "default": True + "default": False }, "on_close": { "description": "Action to execute on the VM is closed",