bootstrap-vz/manifests/virtualbox.manifest.json
Anders Ingemann a840dc28f3 MBR-gap, grub and GPT offset are now subtracted
automatically from the first available partition.
There is no need to fiddle with sizes while keeping the offsets in mind any longer.
Introduced Bytes() class which makes it a lot easier to handle size units.
2014-01-19 13:21:35 +01:00

35 lines
750 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": "32MiB",
"filesystem": "ext2"
},
"root": {
"size": "864MiB",
"filesystem": "ext4"
},
"swap": {"size": "128MiB"}
}
}
}