packer-arch/arch-template.json
2013-08-22 15:11:38 -07:00

23 lines
792 B
JSON

{
"builders": [
{
"type": "vmware",
"iso_url": "http://mirrors.kernel.org/archlinux/iso/2013.08.01/archlinux-2013.08.01-dual.iso",
"iso_checksum": "65aaf2184f19d2bfcd9845688884c03d0f2efc52",
"iso_checksum_type": "sha1",
"boot_wait": "5s",
"boot_command": [
"<enter><wait10><wait5>",
"/usr/bin/curl -O https://raw.github.com/elasticdog/packer-arch/master/install.sh<enter><wait5>",
"/usr/bin/bash ./install.sh<enter>"
],
"disk_size": 20480,
"ssh_username": "root",
"ssh_password": "vagrant",
"shutdown_command": "systemctl poweroff"
}
],
"post-processors": [
"vagrant"
]
}