bootstrap-vz/bootstrapvz/plugins/vagrant/manifest-schema.json
Anders Ingemann aad9bc69c4 Require hostname setting for vagrant plugin
Also, fix reference to vbox src to a revision
2014-05-03 16:12:34 +02:00

34 lines
706 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Vagrant plugin manifest",
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": ["virtualbox"]
},
"system": {
"required": ["hostname"]
},
"volume": {
"type": "object",
"properties": {
"backing": {
"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?rev=51092#L636
}
},
"required": ["backing"]
},
"plugins": {
"type": "object",
"properties": {
"vagrant": {
"type": "object"
}
}
}
}
}