mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00

This is where all provider specific settings belong like waagent on azure, guest additions iso path on vbox and virtualization type on ec2
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"provider": {
|
|
"name": "gce"
|
|
},
|
|
"bootstrapper": {
|
|
"workspace": "/target"
|
|
},
|
|
"image": {
|
|
"name": "disk",
|
|
"description": "Debian {system.release} {system.architecture}"
|
|
},
|
|
"system": {
|
|
"release": "wheezy",
|
|
"sections": ["main", "contrib", "non-free"],
|
|
"architecture": "amd64",
|
|
"bootloader": "grub",
|
|
"timezone": "UTC",
|
|
"locale": "en_US",
|
|
"charmap": "UTF-8"
|
|
},
|
|
"packages": {
|
|
"mirror": "http://gce_debian_mirror.storage.googleapis.com/",
|
|
"preferences": {
|
|
"backport-kernel": [
|
|
{
|
|
"package": "linux-image-* initramfs-tools",
|
|
"pin": "release n=wheezy-backports",
|
|
"pin-priority": 500
|
|
}
|
|
],
|
|
"backport-ssh": [
|
|
{
|
|
"package": "init-system-helpers openssh-sftp-server openssh-client openssh-server",
|
|
"pin": "release n=wheezy-backports",
|
|
"pin-priority": 500
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"plugins": {
|
|
"ntp": {
|
|
"servers": ["metadata.google.internal"]
|
|
}
|
|
},
|
|
"volume": {
|
|
"backing": "raw",
|
|
"partitions": {
|
|
"type": "msdos",
|
|
"root": {
|
|
"size": "10GiB",
|
|
"filesystem": "ext4"
|
|
}
|
|
}
|
|
}
|
|
}
|