2014-10-20 22:39:26 +02:00
|
|
|
{
|
2016-02-26 23:56:38 +01:00
|
|
|
"description": "Debian Babelbox",
|
2020-03-01 22:54:32 +01:00
|
|
|
"builders": [
|
|
|
|
{
|
|
|
|
"type": "virtualbox-iso",
|
|
|
|
"boot_command": [
|
|
|
|
"<esc><wait>",
|
|
|
|
"install <wait>",
|
|
|
|
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
|
|
|
|
"debian-installer/locale=en_US <wait>",
|
|
|
|
"auto <wait>",
|
|
|
|
"netcfg/get_hostname={{ .Name }} <wait>",
|
|
|
|
"netcfg/get_domain=demo.local <wait>",
|
|
|
|
"fb=false <wait>",
|
|
|
|
"debconf/frontend=noninteractive <wait>",
|
|
|
|
"console-setup/ask_detect=false <wait>",
|
|
|
|
"console-keymaps-at/keymap=de <wait>",
|
|
|
|
"keyboard-configuration/xkb-keymap=de <wait>",
|
|
|
|
"<enter><wait>"
|
|
|
|
],
|
|
|
|
"disk_size": 10240,
|
|
|
|
"guest_os_type": "Debian_64",
|
|
|
|
"hard_drive_interface": "sata",
|
|
|
|
"headless": false,
|
|
|
|
"http_directory": "http",
|
|
|
|
"iso_checksum": "6a901b5abe43d88b39d627e1339d15507cc38f980036b928f835e0f0e957d3d8",
|
|
|
|
"iso_checksum_type": "sha256",
|
|
|
|
"iso_url": "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-10.3.0-amd64-netinst.iso",
|
|
|
|
"shutdown_command": "sudo systemctl poweroff",
|
|
|
|
"ssh_username": "demo",
|
|
|
|
"ssh_password": "babelbox",
|
|
|
|
"ssh_port": "22",
|
|
|
|
"ssh_wait_timeout": "1800s",
|
|
|
|
"vm_name": "babelbox-buster",
|
|
|
|
"vboxmanage": [
|
|
|
|
[
|
|
|
|
"modifyvm",
|
|
|
|
"{{.Name}}",
|
|
|
|
"--memory",
|
|
|
|
"1024"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"modifyvm",
|
|
|
|
"{{.Name}}",
|
|
|
|
"--cpus",
|
|
|
|
"1"
|
|
|
|
]
|
|
|
|
],
|
|
|
|
"output_directory": "babelbox-virtualbox"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "qemu",
|
|
|
|
"iso_checksum": "6a901b5abe43d88b39d627e1339d15507cc38f980036b928f835e0f0e957d3d8",
|
|
|
|
"iso_checksum_type": "sha256",
|
|
|
|
"iso_url": "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-10.3.0-amd64-netinst.iso",
|
|
|
|
"output_directory": "babelbox-qemu",
|
|
|
|
"shutdown_command": "sudo systemctl poweroff",
|
|
|
|
"disk_size": "10240M",
|
|
|
|
"format": "qcow2",
|
|
|
|
"accelerator": "kvm",
|
|
|
|
"http_directory": "http-qemu",
|
|
|
|
"ssh_username": "demo",
|
|
|
|
"ssh_password": "babelbox",
|
|
|
|
"ssh_timeout": "20m",
|
|
|
|
"vm_name": "babelbox-buster",
|
|
|
|
"net_device": "virtio-net",
|
|
|
|
"disk_interface": "virtio",
|
|
|
|
"disk_detect_zeroes": "on",
|
|
|
|
"boot_wait": "10s",
|
|
|
|
"boot_command": [
|
|
|
|
"<esc><wait>",
|
2020-03-02 11:38:20 +01:00
|
|
|
"install ",
|
2020-03-01 22:54:32 +01:00
|
|
|
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
|
2020-03-02 11:38:20 +01:00
|
|
|
"debian-installer/locale=en_US ",
|
|
|
|
"auto ",
|
|
|
|
"netcfg/get_hostname={{ .Name }} ",
|
|
|
|
"netcfg/get_domain=demo.local ",
|
|
|
|
"fb=false ",
|
|
|
|
"debconf/frontend=noninteractive ",
|
|
|
|
"console-setup/ask_detect=false ",
|
|
|
|
"console-keymaps-at/keymap=de ",
|
|
|
|
"keyboard-configuration/xkb-keymap=de ",
|
|
|
|
"<enter>"
|
2020-03-01 22:54:32 +01:00
|
|
|
],
|
|
|
|
"memory": "1024",
|
|
|
|
"qemuargs": [
|
2020-03-02 11:38:20 +01:00
|
|
|
["-display", "gtk"]
|
2020-03-01 22:54:32 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"provisioners": [
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"execute_command": "{{ .Vars }} sudo -E /bin/sh '{{ .Path }}'",
|
|
|
|
"scripts": [
|
|
|
|
"scripts/babelbox-partitions.sh",
|
|
|
|
"scripts/setup-babelbox.sh"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"only": [
|
|
|
|
"virtualbox-iso"
|
|
|
|
],
|
|
|
|
"execute_command": "{{ .Vars }} sudo -E /bin/sh '{{ .Path }}'",
|
|
|
|
"scripts": [
|
|
|
|
"scripts/virtualbox.sh"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"execute_command": "{{ .Vars }} sudo -E /bin/sh '{{ .Path }}'",
|
|
|
|
"scripts": [
|
|
|
|
"scripts/cleanup.sh",
|
|
|
|
"scripts/minimize.sh"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2014-10-20 22:39:26 +02:00
|
|
|
}
|