diff --git a/packer/ubuntu-12.10-amd64.json b/packer/ubuntu-12.10-amd64.json deleted file mode 100644 index 20eee9fce..000000000 --- a/packer/ubuntu-12.10-amd64.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "builders": [ - { - "boot_command": [ - "", - "", - "", - "/install/vmlinuz", - " auto", - " console-setup/ask_detect=false", - " console-setup/layoutcode=us", - " console-setup/modelcode=pc105", - " debconf/frontend=noninteractive", - " debian-installer=en_US", - " fb=false", - " initrd=/install/initrd.gz", - " kbd-chooser/method=us", - " keyboard-configuration/layout=USA", - " keyboard-configuration/variant=USA", - " locale=en_US", - " netcfg/get_domain=vm", - " netcfg/get_hostname=vagrant", - " noapic", - " preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ubuntu-12.10/preseed.cfg", - " -- ", - "" - ], - "boot_wait": "10s", - "disk_size": 40960, - "guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso", - "guest_os_type": "Ubuntu_64", - "http_directory": "http", - "iso_checksum": "e2a48af008ff3c4db6a8235151a1e90ea600fceb", - "iso_checksum_type": "sha1", - "iso_url": "{{user `mirror`}}/12.10/ubuntu-12.10-server-amd64.iso", - "output_directory": "packer-ubuntu-12.10-amd64-virtualbox", - "shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now", - "ssh_password": "vagrant", - "ssh_port": 22, - "ssh_username": "vagrant", - "ssh_wait_timeout": "10000s", - "type": "virtualbox-iso", - "vboxmanage": [ - [ - "modifyvm", - "{{.Name}}", - "--memory", - "384" - ], - [ - "modifyvm", - "{{.Name}}", - "--cpus", - "1" - ] - ], - "virtualbox_version_file": ".vbox_version", - "vm_name": "packer-ubuntu-12.10-amd64" - }, - { - "boot_command": [ - "", - "", - "", - "/install/vmlinuz", - " auto", - " console-setup/ask_detect=false", - " console-setup/layoutcode=us", - " console-setup/modelcode=pc105", - " debconf/frontend=noninteractive", - " debian-installer=en_US", - " fb=false", - " initrd=/install/initrd.gz", - " kbd-chooser/method=us", - " keyboard-configuration/layout=USA", - " keyboard-configuration/variant=USA", - " locale=en_US", - " netcfg/get_domain=vm", - " netcfg/get_hostname=vagrant", - " noapic", - " preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ubuntu-12.10/preseed.cfg", - " -- ", - "" - ], - "boot_wait": "10s", - "disk_size": 40960, - "guest_os_type": "ubuntu-64", - "http_directory": "http", - "iso_checksum": "e2a48af008ff3c4db6a8235151a1e90ea600fceb", - "iso_checksum_type": "sha1", - "iso_url": "{{user `mirror`}}/12.10/ubuntu-12.10-server-amd64.iso", - "output_directory": "packer-ubuntu-12.10-amd64-vmware", - "shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now", - "ssh_password": "vagrant", - "ssh_port": 22, - "ssh_username": "vagrant", - "ssh_wait_timeout": "10000s", - "tools_upload_flavor": "linux", - "type": "vmware-iso", - "vm_name": "packer-ubuntu-12.10-amd64", - "vmx_data": { - "cpuid.coresPerSocket": "1", - "memsize": "384", - "numvcpus": "1" - } - } - ], - "post-processors": [ - { - "output": "../builds/{{.Provider}}/opscode_ubuntu-12.10_chef-{{user `chef_version`}}.box", - "type": "vagrant" - } - ], - "provisioners": [ - { - "environment_vars": [ - "CHEF_VERSION={{user `chef_version`}}" - ], - "execute_command": "echo 'vagrant'|{{.Vars}} sudo -S -E bash '{{.Path}}'", - "scripts": [ - "scripts/ubuntu/update.sh", - "scripts/common/sshd.sh", - "scripts/ubuntu/networking.sh", - "scripts/ubuntu/sudoers.sh", - "scripts/common/vagrant.sh", - "scripts/common/vmtools.sh", - "scripts/common/chef.sh", - "scripts/ubuntu/cleanup.sh", - "scripts/common/minimize.sh" - ], - "type": "shell" - } - ], - "variables": { - "chef_version": "provisionerless", - "mirror": "http://releases.ubuntu.com" - } -} - diff --git a/packer/ubuntu-12.10-i386.json b/packer/ubuntu-12.10-i386.json deleted file mode 100644 index b9f982596..000000000 --- a/packer/ubuntu-12.10-i386.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "builders": [ - { - "boot_command": [ - "", - "", - "", - "/install/vmlinuz", - " auto", - " console-setup/ask_detect=false", - " console-setup/layoutcode=us", - " console-setup/modelcode=pc105", - " debconf/frontend=noninteractive", - " debian-installer=en_US", - " fb=false", - " initrd=/install/initrd.gz", - " kbd-chooser/method=us", - " keyboard-configuration/layout=USA", - " keyboard-configuration/variant=USA", - " locale=en_US", - " netcfg/get_domain=vm", - " netcfg/get_hostname=vagrant", - " noapic", - " preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ubuntu-12.10/preseed.cfg", - " -- ", - "" - ], - "boot_wait": "10s", - "disk_size": 40960, - "guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso", - "guest_os_type": "Ubuntu", - "http_directory": "http", - "iso_checksum": "e0e48be7ae21003cf0b25591d71d8cdbee7063e7", - "iso_checksum_type": "sha1", - "iso_url": "{{user `mirror`}}/12.10/ubuntu-12.10-server-i386.iso", - "output_directory": "packer-ubuntu-12.10-i386-virtualbox", - "shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now", - "ssh_password": "vagrant", - "ssh_port": 22, - "ssh_username": "vagrant", - "ssh_wait_timeout": "10000s", - "type": "virtualbox-iso", - "vboxmanage": [ - [ - "modifyvm", - "{{.Name}}", - "--memory", - "384" - ], - [ - "modifyvm", - "{{.Name}}", - "--cpus", - "1" - ] - ], - "virtualbox_version_file": ".vbox_version", - "vm_name": "packer-ubuntu-12.10-i386" - }, - { - "boot_command": [ - "", - "", - "", - "/install/vmlinuz", - " auto", - " console-setup/ask_detect=false", - " console-setup/layoutcode=us", - " console-setup/modelcode=pc105", - " debconf/frontend=noninteractive", - " debian-installer=en_US", - " fb=false", - " initrd=/install/initrd.gz", - " kbd-chooser/method=us", - " keyboard-configuration/layout=USA", - " keyboard-configuration/variant=USA", - " locale=en_US", - " netcfg/get_domain=vm", - " netcfg/get_hostname=vagrant", - " noapic", - " preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ubuntu-12.10/preseed.cfg", - " -- ", - "" - ], - "boot_wait": "10s", - "disk_size": 40960, - "guest_os_type": "ubuntu", - "http_directory": "http", - "iso_checksum": "e0e48be7ae21003cf0b25591d71d8cdbee7063e7", - "iso_checksum_type": "sha1", - "iso_url": "{{user `mirror`}}/12.10/ubuntu-12.10-server-i386.iso", - "output_directory": "packer-ubuntu-12.10-i386-vmware", - "shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now", - "ssh_password": "vagrant", - "ssh_port": 22, - "ssh_username": "vagrant", - "ssh_wait_timeout": "10000s", - "tools_upload_flavor": "linux", - "type": "vmware-iso", - "vm_name": "packer-ubuntu-12.10-i386", - "vmx_data": { - "cpuid.coresPerSocket": "1", - "memsize": "384", - "numvcpus": "1" - } - } - ], - "post-processors": [ - { - "output": "../builds/{{.Provider}}/opscode_ubuntu-12.10-i386_chef-{{user `chef_version`}}.box", - "type": "vagrant" - } - ], - "provisioners": [ - { - "environment_vars": [ - "CHEF_VERSION={{user `chef_version`}}" - ], - "execute_command": "echo 'vagrant'|{{.Vars}} sudo -S -E bash '{{.Path}}'", - "scripts": [ - "scripts/ubuntu/update.sh", - "scripts/common/sshd.sh", - "scripts/ubuntu/networking.sh", - "scripts/ubuntu/sudoers.sh", - "scripts/common/vagrant.sh", - "scripts/common/vmtools.sh", - "scripts/common/chef.sh", - "scripts/ubuntu/cleanup.sh", - "scripts/common/minimize.sh" - ], - "type": "shell" - } - ], - "variables": { - "chef_version": "provisionerless", - "mirror": "http://releases.ubuntu.com" - } -} -