summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2019-10-16 15:08:30 +0200
committerJonathan Bauer2019-10-16 15:08:30 +0200
commite4f063f73e84367cd88407aac8cf386e3b720824 (patch)
tree1481a07a16f68c6d7af123d7247f341978427ce4
parentremove old template (diff)
downloadpacker-templates-e4f063f73e84367cd88407aac8cf386e3b720824.tar.gz
packer-templates-e4f063f73e84367cd88407aac8cf386e3b720824.tar.xz
packer-templates-e4f063f73e84367cd88407aac8cf386e3b720824.zip
remove old ubuntu templates
-rw-r--r--ubuntu-16.04-amd64.json137
-rw-r--r--ubuntu-17.10-amd64.json137
2 files changed, 0 insertions, 274 deletions
diff --git a/ubuntu-16.04-amd64.json b/ubuntu-16.04-amd64.json
deleted file mode 100644
index 9402c73..0000000
--- a/ubuntu-16.04-amd64.json
+++ /dev/null
@@ -1,137 +0,0 @@
-{
- "variables": {
- "iso_url": "http://releases.ubuntu.com/16.04.3/ubuntu-16.04.3-server-amd64.iso",
- "iso_checksum": "a06cd926f5855d4f21fb4bc9978a35312f815fbda0d0ef7fdc846861f4fc4600",
- "iso_checksum_type": "sha256",
- "vm_name": "ubuntu-16.04-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": [
- "<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>",
- "/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` }} ",
- "<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>",
- "/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` }} ",
- "<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>",
- "/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` }} ",
- "<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` }}"
- }
- }]
-}
diff --git a/ubuntu-17.10-amd64.json b/ubuntu-17.10-amd64.json
deleted file mode 100644
index 6fbe4bb..0000000
--- a/ubuntu-17.10-amd64.json
+++ /dev/null
@@ -1,137 +0,0 @@
-{
- "variables": {
- "iso_url": "http://releases.ubuntu.com/17.10/ubuntu-17.10.1-server-amd64.iso",
- "iso_checksum_url": "http://releases.ubuntu.com/17.10/SHA256SUMS",
- "iso_checksum_type": "sha256",
- "vm_name": "ubuntu-17.10-amd64",
- "http_dir": "http",
- "preseed_path": "ubuntu-17.10/preseed.cfg",
- "shutdown_command": "systemctl poweroff",
- "ssh_password":"{{ env `ROOTPW` }}"
- },
- "builders": [{
- "type": "qemu",
- "accelerator": "kvm",
- "iso_url": "{{ user `iso_url` }}",
- "iso_checksum_url": "{{ user `iso_checksum_url` }}",
- "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>",
- "/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` }} ",
- "<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_url": "{{ user `iso_checksum_url` }}",
- "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>",
- "/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` }} ",
- "<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_url": "{{ user `iso_checksum_url` }}",
- "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>",
- "/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` }} ",
- "<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` }}"
- }
- }]
-}