mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Split GCE manifest into regular & backports
Some people want the security team-supported 3.2 kernel, while others want the better performance of the backports kernel. Both flavors are currently provided in the Google Compute Engine debian-cloud project. Also add OpenSSH to the backports flavor, for parity with the current GCE backports image based on build-debian-cloud. This backport is included for performance reasons, in line with the purpose of that image flavor, and as discussed on the debian-cloud list.
This commit is contained in:
parent
6c071bed72
commit
49475292d7
2 changed files with 54 additions and 10 deletions
53
manifests/gce-backports.manifest.json
Normal file
53
manifests/gce-backports.manifest.json
Normal file
|
@ -0,0 +1,53 @@
|
|||
{
|
||||
"provider": "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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -17,16 +17,7 @@
|
|||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
"mirror": "http://gce_debian_mirror.storage.googleapis.com/"
|
||||
},
|
||||
"plugins": {
|
||||
"ntp": {
|
||||
|
|
Loading…
Add table
Reference in a new issue