forked from bstoots/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
centos-5.11-x86_64.json
55 lines (55 loc) · 1.64 KB
/
centos-5.11-x86_64.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"builders": [{
"type": "virtualbox-iso",
"guest_os_type": "RedHat_64",
"iso_url": "{{user `mirror`}}/5.11/isos/x86_64/CentOS-5.11-x86_64-netinstall.iso",
"iso_checksum": "9729c04a8a3ba57ed4e34ee5b96522879e6a3bcbf5582c3b6bcfd02bcfbacf8c",
"iso_checksum_type": "sha256",
"output_directory": "output-centos-5.11-x86_64",
"vm_name": "packer-centos-5.11-x86_64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"<esc>",
"<wait>",
"linux ks=http://{{.HTTPIP}}:{{.HTTPPort}}/centos-5.11/anaconda-ks.cfg",
"<enter>"
],
"ssh_wait_timeout": "60m",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo poweroff",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/centos-5.11/repo.sh",
"scripts/centos-5.11/init.sh",
"scripts/centos/virtualbox.sh",
"scripts/common/vagrant.sh",
"scripts/common/sshd.sh",
"scripts/centos-5.11/locale.sh",
"scripts/centos-5.11/cleanup.sh",
"scripts/common/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "centos-5.11-x86_64.box"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"memory": "512",
"mirror": "http://mirrors.kernel.org/centos"
}
}