From aad9bc69c4d8ee0443eb1cf1792a1d202a9ae1ab Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sat, 3 May 2014 11:02:29 +0200 Subject: [PATCH] Require hostname setting for vagrant plugin Also, fix reference to vbox src to a revision --- bootstrapvz/plugins/vagrant/manifest-schema.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrapvz/plugins/vagrant/manifest-schema.json b/bootstrapvz/plugins/vagrant/manifest-schema.json index c52c180..bb35ab5 100644 --- a/bootstrapvz/plugins/vagrant/manifest-schema.json +++ b/bootstrapvz/plugins/vagrant/manifest-schema.json @@ -7,6 +7,9 @@ "type": "string", "enum": ["virtualbox"] }, + "system": { + "required": ["hostname"] + }, "volume": { "type": "object", "properties": { @@ -14,7 +17,7 @@ "type": "string", "enum": ["vmdk"] // VirtualBox only supports vmdk or raw when importing via OVF: - // https://www.virtualbox.org/browser/vbox/trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp#L636 + // https://www.virtualbox.org/browser/vbox/trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp?rev=51092#L636 } }, "required": ["backing"]