-
Notifications
You must be signed in to change notification settings - Fork 26
/
vagrant-centos.json
70 lines (65 loc) · 1.77 KB
/
vagrant-centos.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"variables":
{
"iso_url": "",
"iso_checksum": "",
"iso_checksum_type": "",
"guest_additions_path": "",
"redhat_release": "",
"disk_size":""
},
"builders": [
{
"type": "virtualbox-iso",
"vm_name": "centos-vm",
"boot_wait": "10s",
"disk_size": "{{user `disk_size`}}",
"guest_os_type": "RedHat_64",
"http_directory": "http",
"iso_url": "{{user `iso_url`}}",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"guest_additions_path": "{{user `guest_additions_path`}}",
"boot_command": [
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/vagrant.ks<enter><wait>"
],
"shutdown_command": "echo 'vagrant'|sudo -S /sbin/halt -h -p",
"shutdown_timeout" : "10s",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"hard_drive_interface": "sata",
"ssh_wait_timeout": "60m",
"output_directory": "builds",
"vboxmanage": [
[ "modifyvm", "{{.Name}}", "--memory", "640" ],
[ "modifyvm", "{{.Name}}", "--cpus", "2" ]
],
"virtualbox_version_file": ".vbox_version"
}
],
"post-processors": [
{
"output": "vagrant-centos-{{user `redhat_release`}}.box",
"compression_level": "6",
"type": "vagrant"
}
],
"provisioners": [
{
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"type": "shell",
"override": {
"virtualbox-iso": {
"scripts": [
"scripts/base.sh",
"scripts/vagrant.sh",
"scripts/virtualbox.sh",
"scripts/cleanup.sh",
"scripts/puppet.sh"
]
}
}
}
]
}