bootstrap-vz/manifests/virtualbox-vagrant.manifest.json
Anders Ingemann 889812b1ad Rename MBR partition table to MSDOS
Calling it MBR is just confusing
2014-01-18 23:27:52 +01:00

38 lines
770 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": "vmdk",
"partitions": {
"type": "msdos",
"boot": {
"size": 64,
"filesystem": "ext2"
},
"root": {
"size": 1855,
"filesystem": "ext4"
},
"swap": {"size": 128}
}
},
"plugins": {
"vagrant": {}
}
}