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

35 lines
733 B
JSON

{
"provider": "virtualbox",
"bootstrapper": {
"workspace": "/target"
// "guest_additions": "/root/images/VBoxGuestAdditions.iso"
},
"image": {
"name": "debian-{system.release}-{system.architecture}-{%y}{%m}{%d}",
"description": "Debian {system.release} {system.architecture}"
},
"system": {
"release": "wheezy",
"architecture": "amd64",
"bootloader": "grub",
"timezone": "UTC",
"locale": "en_US",
"charmap": "UTF-8"
},
"packages": {},
"volume": {
"backing": "vdi",
"partitions": {
"type": "mbr",
"boot": {
"size": 32,
"filesystem": "ext2"
},
"root": {
"size": 991,
"filesystem": "ext4"
},
"swap": {"size": 128}
}
}
}