From 9b906aeaf8e745f5947fe64461f4e520456e74be Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Wed, 6 Nov 2013 22:34:49 +0100 Subject: [PATCH] Disallow gpt for virtualbox --- providers/virtualbox/manifest-schema.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/providers/virtualbox/manifest-schema.json b/providers/virtualbox/manifest-schema.json index 476dede..e9b1474 100644 --- a/providers/virtualbox/manifest-schema.json +++ b/providers/virtualbox/manifest-schema.json @@ -9,6 +9,12 @@ "backing": { "type": "string", "enum": ["raw", "vdi", "qcow2"] + }, + "partitions": { + "type": "object", + "properties": { + "type": { "enum": ["none", "mbr"] } + } } }, "required": ["backing"]