From 7172a1dfd53c11b23c13f8652a4277b01f4bc0d1 Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Mon, 19 Feb 2018 18:19:34 +0100 Subject: [ubuntu-17.10] new template --- ubuntu-17.10-amd64.json | 137 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 ubuntu-17.10-amd64.json (limited to 'ubuntu-17.10-amd64.json') diff --git a/ubuntu-17.10-amd64.json b/ubuntu-17.10-amd64.json new file mode 100644 index 0000000..d83cab5 --- /dev/null +++ b/ubuntu-17.10-amd64.json @@ -0,0 +1,137 @@ +{ + "variables": { + "iso_url": "http://releases.ubuntu.com/17.10/ubuntu-17.10-server-amd64.iso", + "iso_checksum": "af913c00296eb0cfece99b8a02ae6db035ae173ed240241e780c8d7db96914b1", + "iso_checksum_type": "sha256", + "vm_name": "ubuntu-17.10-amd64", + "http_dir": "http", + "preseed_path": "ubuntu-16.04/preseed.cfg", + "shutdown_command": "systemctl poweroff", + "ssh_password":"{{ env `ROOTPW` }}" + }, + "builders": [{ + "type": "qemu", + "accelerator": "kvm", + "iso_url": "{{ user `iso_url` }}", + "iso_checksum": "{{ user `iso_checksum` }}", + "iso_checksum_type": "{{ user `iso_checksum_type` }}", + "output_directory": "{{ user `output_directory` }}", + "vm_name": "{{ user `vm_name` }}", + "disk_size": "{{ user `disk_size` }}", + "format": "qcow2", + "headless": "{{ user `headless` }}", + "http_directory": "{{ user `http_dir` }}", + "boot_command": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "/install/vmlinuz ", + "initrd=/install/initrd.gz ", + "auto=true ", + "passwd/root-password={{ user `ssh_password` }} ", + "passwd/root-password-again={{ user `ssh_password` }} ", + "debconf/priority=critical ", + "preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `preseed_path` }} ", + "" + ], + "boot_wait": "5s", + "ssh_timeout": "{{user `ssh_timeout`}}", + "ssh_username": "{{ user `ssh_username` }}", + "ssh_password": "{{ user `ssh_password` }}", + "shutdown_command": "{{ user `shutdown_command` }}", + "qemuargs": [ + ["-m", "{{user `memory`}}"], + ["-smp", "{{user `cpus`}}"] + ] + }, { + "type": "virtualbox-iso", + "guest_os_type": "Ubuntu_64", + "iso_url": "{{ user `iso_url` }}", + "iso_checksum": "{{ user `iso_checksum` }}", + "iso_checksum_type": "{{ user `iso_checksum_type` }}", + "output_directory": "{{ user `output_directory` }}", + "vm_name": "{{ user `vm_name` }}", + "disk_size": "{{ user `disk_size` }}", + "headless": "{{ user `headless` }}", + "http_directory": "{{ user `http_dir` }}", + "boot_command": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "/install/vmlinuz ", + "initrd=/install/initrd.gz ", + "auto=true ", + "passwd/root-password={{ user `ssh_password` }} ", + "passwd/root-password-again={{ user `ssh_password` }} ", + "debconf/priority=critical ", + "preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `preseed_path` }} ", + "" + ], + "boot_wait": "5s", + "ssh_timeout": "{{ user `ssh_timeout` }}", + "ssh_username": "{{ user `ssh_username` }}", + "ssh_password": "{{ user `ssh_password` }}", + "shutdown_command": "{{ user `shutdown_command` }}", + "vboxmanage": [ + ["modifyvm", "{{ .Name }}", "--memory", "{{ user `memory` }}"], + ["modifyvm", "{{ .Name }}", "--cpus", "{{ user `cpus` }}"] + ] + }, { + "type": "vmware-iso", + "guest_os_type": "ubuntu-64", + "iso_url": "{{ user `iso_url` }}", + "iso_checksum": "{{ user `iso_checksum` }}", + "iso_checksum_type": "{{ user `iso_checksum_type` }}", + "output_directory": "{{ user `output_directory` }}", + "vm_name": "{{ user `vm_name` }}", + "disk_size": "{{ user `disk_size` }}", + "headless": "{{ user `headless` }}", + "http_directory": "{{ user `http_dir` }}", + "boot_command": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "/install/vmlinuz ", + "initrd=/install/initrd.gz ", + "auto=true ", + "passwd/root-password={{ user `ssh_password` }} ", + "passwd/root-password-again={{ user `ssh_password` }} ", + "debconf/priority=critical ", + "preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `preseed_path` }} ", + "" + ], + "boot_wait": "5s", + "ssh_timeout": "{{ user `ssh_timeout` }}", + "ssh_username": "{{ user `ssh_username` }}", + "ssh_password": "{{ user `ssh_password` }}", + "shutdown_command": "{{ user `shutdown_command` }}", + "vmx_data": { + "memsize": "{{ user `memory` }}", + "numvcpus": "{{ user `cpus` }}" + } + }] +} -- cgit v1.2.3-55-g7522