bootstrap-vz/manifests/virtualbox.manifest.json

38 lines
769 B
JSON
Raw Normal View History

{
"provider": {
"name": "virtualbox",
"guest_additions": "/root/images/VBoxGuestAdditions.iso"
},
"bootstrapper": {
"workspace": "/target"
},
"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"}
}
}
}