bootstrap-vz/providers/virtualbox/manifest-schema.json
Anders Ingemann 44f3296426 Extlinux support
The bootloader is now specified in the manifest
2014-01-05 02:25:28 +01:00

40 lines
682 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "VirtualBox manifest",
"type": "object",
"properties": {
"bootstrapper": {
"type": "object",
"properties": {
"guest_additions": {
"type": "string"
}
}
},
"system": {
"type": "object",
"properties": {
"bootloader": {
"type": "string",
"enum": ["grub"]
}
}
},
"volume": {
"type": "object",
"properties": {
"backing": {
"type": "string",
"enum": ["raw", "vdi", "vmdk"]
},
"partitions": {
"type": "object",
"properties": {
"type": { "enum": ["none", "mbr"] }
}
}
},
"required": ["backing"]
}
}
}