bootstrap-vz/manifests/virtualbox.manifest.json
Anders Ingemann 81a4ec78eb Post-MBR size increased to 2.
Also, move the size addition into the volume model
2014-01-18 23:35:21 +01:00

35 lines
735 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": "msdos",
"boot": {
"size": 32,
"filesystem": "ext2"
},
"root": {
"size": 990,
"filesystem": "ext4"
},
"swap": {"size": 128}
}
}
}