-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqueeze64.json
More file actions
38 lines (38 loc) · 1.21 KB
/
squeeze64.json
File metadata and controls
38 lines (38 loc) · 1.21 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": "squeeze64",
"type": "virtualbox-iso",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "1024"]
],
"guest_os_type": "Debian_64",
"headless": false,
"iso_url": "http://cdimage.debian.org/cdimage/archive/6.0.9/amd64/iso-cd/debian-6.0.9-amd64-netinst.iso",
"iso_checksum": "6d66c90c0d554801f537a794c4b778ef549efd9d4c7d68b893846c647f257e21",
"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
}]
}