Skip to content

Instantly share code, notes, and snippets.

@lmayorga1980
Created January 23, 2014 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmayorga1980/8586761 to your computer and use it in GitHub Desktop.
Save lmayorga1980/8586761 to your computer and use it in GitHub Desktop.
packer-template
{
"provisioners": [
{
"type": "shell",
"scripts": [
"scripts/base.sh",
"scripts/vagrant.sh",
"scripts/virtualbox.sh",
"scripts/vmware.sh"
],
"override": {
"virtualbox-iso": {
"execute_command": "echo 'vagrant'|sudo -S sh '{{.Path}}'"
}
}
}
],
"variables": {
"ssh_name": "vagrant",
"ssh_pass": "vagrant",
"hostname": "puppetmaster"
},
"builders": [
{
"type": "vmware-iso",
"vm_name": "ubuntu1204",
"boot_wait": "30s",
"disk_size": 20480,
"guest_os_type": "ubuntu-64",
"http_directory" : "http/cfg_ubuntu",
"http_port_min" : 9001,
"http_port_max" : 9001,
"iso_checksum": "2cbe868812a871242cdcdd8f2fd6feb9",
"iso_checksum_type": "md5",
"iso_url": "iso/ubuntu-12.04.3-server-amd64.iso",
"skip_compaction": true,
"ssh_username": "{{user `ssh_name`}}",
"ssh_password": "{{user `ssh_pass`}}",
"ssh_port": 22,
"ssh_skip_request_pty": true,
"ssh_wait_timeout": "90m",
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz noapic ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{user `hostname`}} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- <enter>"
],
"shutdown_command": "echo {{user `ssh_pass`}} | sudo -S shutdown -P now",
"tools_upload_flavor": "linux",
"vmx_data": {
"memsize": "2048",
"numvcpus": "2",
"cpuid.coresPerSocket": "1",
"scsi0.virtualDev": "lsisas1068"
}
},
{
"type": "virtualbox-iso",
"guest_os_type": "Ubuntu_64",
"iso_url": "iso/ubuntu-12.04.3-server-amd64.iso",
"iso_checksum": "2cbe868812a871242cdcdd8f2fd6feb9",
"iso_checksum_type": "md5",
"ssh_username": "{{user `ssh_name`}}",
"ssh_password": "{{user `ssh_pass`}}",
"ssh_port": 22,
"ssh_wait_timeout": "90m",
"http_directory" : "http/cfg_ubuntu",
"http_port_min" : 9001,
"http_port_max" : 9001,
"guest_additions_path": "VBoxGuestAdditions_4.3.6.iso",
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz noapic ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{user `hostname`}} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- <enter>"
],
"shutdown_command": "echo {{user `ssh_pass`}} | sudo -S shutdown -P now",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "2048"],
["modifyvm", "{{.Name}}", "--cpus", "2"]
]
}],
"post-processors" : [
{
"type": "vagrant",
"keep_input_artifact": false,
"output": "ubuntu_precise_64{{.Provider}}.box"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment