summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2018-03-01 17:40:05 +0100
committerJonathan Bauer2018-03-01 17:40:05 +0100
commitda6b6d943846a65318b9ed60ca174a2df2ad942e (patch)
tree60a165ca77436655762a02b4dcd2a34e1f44ea39
parent[ubuntu-17.10] fix kickstart directory (diff)
downloadpacker-templates-da6b6d943846a65318b9ed60ca174a2df2ad942e.tar.gz
packer-templates-da6b6d943846a65318b9ed60ca174a2df2ad942e.tar.xz
packer-templates-da6b6d943846a65318b9ed60ca174a2df2ad942e.zip
new template for ubuntu 18.04 alphas
hopefully a solid base for non-alphas too
-rw-r--r--ubuntu-18.04-amd64.json134
1 files changed, 134 insertions, 0 deletions
diff --git a/ubuntu-18.04-amd64.json b/ubuntu-18.04-amd64.json
new file mode 100644
index 0000000..90b2f50
--- /dev/null
+++ b/ubuntu-18.04-amd64.json
@@ -0,0 +1,134 @@
+{
+ "variables": {
+ "iso_url": "http://cdimage.ubuntu.com/ubuntu-server/daily/20180227/bionic-server-amd64.iso",
+ "iso_checksum": "80209260bf642d00f84e1d76dc977ed0b657c5da7b17e44b059f44135390d81a",
+ "iso_checksum_type": "sha256",
+ "vm_name": "ubuntu-18.04-amd64",
+ "http_dir": "http",
+ "preseed_path": "ubuntu-18.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": [
+ "<enter><wait>",
+ "<f6><esc>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs>",
+ "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` }} ",
+ "<enter>"
+ ],
+ "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": [
+ "<enter><wait>",
+ "<f6><esc>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs>",
+ "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` }} ",
+ "<enter>"
+ ],
+ "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": [
+ "<enter><wait>",
+ "<f6><esc>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "<bs><bs><bs>",
+ "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` }} ",
+ "<enter>"
+ ],
+ "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` }}"
+ }
+ }]
+}