-
Notifications
You must be signed in to change notification settings - Fork 0
/
centos-7-desktop.json
81 lines (81 loc) · 2.24 KB
/
centos-7-desktop.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
71
72
73
74
75
76
77
78
79
80
81
{
"builders": [
{
"type": "virtualbox-iso",
"boot_command": [
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ks-desktop.cfg<enter><wait>"
],
"boot_wait": "10s",
"disk_size": 81920,
"guest_os_type": "RedHat_64",
"guest_additions_path": "VBoxGuestAdditions_5.2.7-120528.iso",
"guest_additions_url": "VBoxGuestAdditions_5.2.7-120528.iso",
"guest_additions_sha256": "3b1a9fe30ea31f82d93a25ed79829df56f90a01b818c1f3730c5a7416414d8c1",
"headless": true,
"http_directory": "http",
"iso_urls": [
"CentOS-7-x86_64-Minimal-1708.iso",
"http://mirror.bytemark.co.uk/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1708.iso",
"https://www.virtualbox.org/download/testcase/VBoxGuestAdditions_5.2.7-120528.iso",
"VBoxGuestAdditions_5.2.7-120528.iso"
],
"iso_checksum_type": "sha256",
"iso_checksum": "bba314624956961a2ea31dd460cd860a77911c1e0a56e4820a12b9c5dad363f5",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo 'vagrant'|sudo -S /sbin/halt -h -p",
"virtualbox_version_file": ".vbox_version",
"vm_name": "packer-centos-7-x86_64",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"4096"
],
[
"modifyvm",
"{{.Name}}",
"--vram",
"256"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"2"
],
[
"modifyvm",
"{{.Name}}",
"--clipboard",
"bidirectional"
]
]
}
],
"provisioners": [
{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"script": "scripts/ansible.sh"
},
{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"script": "scripts/guest_additions.sh"
},
{
"type": "ansible",
"playbook_file": "ansible/playbook.yml"
}
],
"post-processors": [
{
"output": "builds/virtualbox-centos-7-desktop.box",
"type": "vagrant"
}
]
}