2013-12-29 21:18:33 +01:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"title": "Vagrant plugin manifest",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"provider": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["virtualbox"]
|
|
|
|
},
|
2014-05-03 11:02:29 +02:00
|
|
|
"system": {
|
|
|
|
"required": ["hostname"]
|
|
|
|
},
|
2013-12-29 21:18:33 +01:00
|
|
|
"volume": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"backing": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["vmdk"]
|
|
|
|
// VirtualBox only supports vmdk or raw when importing via OVF:
|
2014-05-03 11:02:29 +02:00
|
|
|
// https://www.virtualbox.org/browser/vbox/trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp?rev=51092#L636
|
2013-12-29 21:18:33 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["backing"]
|
2014-01-20 21:21:09 +01:00
|
|
|
},
|
|
|
|
"plugins": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"vagrant": {
|
2014-04-14 07:11:03 -03:00
|
|
|
"type": "object"
|
2014-01-20 21:21:09 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-29 21:18:33 +01:00
|
|
|
}
|
2014-01-12 12:44:32 +01:00
|
|
|
}
|
2013-12-29 21:18:33 +01:00
|
|
|
}
|