bootstrap-vz/manifests/virtualbox.manifest.json
Anders Ingemann d6502089e2 Implemented both MBR and GPT partitioning.
VirtualBox seems to not like GPT
2013-10-27 18:11:14 +01:00

33 lines
633 B
JSON

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