-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwheezy64.json
More file actions
38 lines (38 loc) · 1.22 KB
/
wheezy64.json
File metadata and controls
38 lines (38 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"builders": [{
"name": "wheezy64",
"type": "virtualbox-iso",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "1024"]
],
"guest_os_type": "Debian_64",
"headless": false,
"iso_url": "http://ftp.proxad.net/mirrors/cdimage.debian.org/debian-cd/7.4.0/amd64/iso-cd/debian-7.4.0-amd64-netinst.iso",
"iso_checksum": "b712a141bc60269db217d3b3e456179bd6b181645f90e4aac9c42ed63de492e9",
"iso_checksum_type": "sha256",
"ssh_username": "root",
"ssh_password": "packer",
"ssh_wait_timeout": "30m",
"http_directory": "kickstart",
"boot_wait": "5s",
"boot_command": [
"<esc><esc>",
" auto url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg",
" fb=false",
"<enter>"
],
"shutdown_command": "shutdown -h -P now"
}],
"provisioners": [{
"type": "shell",
"script": "scripts/install-ansible.sh"
}, {
"type": "ansible-local",
"playbook_file": "ansible/playbook.yml",
"role_paths": ["ansible/roles/vagrant"]
}],
"post-processors": [{
"type": "vagrant",
"keep_input_artifact": true
}]
}