forked from mohatt/dashbrew-basebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.json
156 lines (156 loc) · 5.67 KB
/
template.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"variables": {
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"iso_checksum": "401c5f6666fe2879ac3a9a3247b487723410cf88",
"iso_url": "http://releases.ubuntu.com/14.04/ubuntu-14.04.1-server-amd64.iso"
},
"builders": [
{
"vm_name": "dashbrew-ubuntu-14.04-amd64",
"type": "vmware-iso",
"guest_os_type": "ubuntu-64",
"http_directory": "http",
"iso_url": "{{ user `iso_url` }}",
"iso_checksum": "{{ user `iso_checksum` }}",
"iso_checksum_type": "sha1",
"ssh_username": "{{ user `ssh_username` }}",
"ssh_password": "{{ user `ssh_password` }}",
"ssh_wait_timeout": "10000s",
"tools_upload_flavor": "linux",
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz auto",
" console-setup/ask_detect=false",
" console-setup/layoutcode=us",
" console-setup/modelcode=pc105",
" debconf/frontend=noninteractive",
" debian-installer=en_US",
" fb=false",
" initrd=/install/initrd.gz",
" kbd-chooser/method=us",
" keyboard-configuration/layout=USA",
" keyboard-configuration/variant=USA",
" locale=en_US",
" netcfg/get_domain=vm",
" netcfg/get_hostname=vagrant",
" noapic" ,
" preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg",
" -- ",
"<enter>"
],
"shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now",
"disk_size": 10140,
"vmx_data": {
"memsize": "1024",
"numvcpus": "2"
}
},
{
"type": "virtualbox-iso",
"vm_name": "dashbrew-ubuntu-14.04-amd64",
"boot_command": [
"<esc><wait>",
"<esc><wait>",
"<enter><wait>",
"/install/vmlinuz<wait>",
" auto<wait>",
" console-setup/ask_detect=false<wait>",
" console-setup/layoutcode=us<wait>",
" console-setup/modelcode=pc105<wait>",
" debconf/frontend=noninteractive<wait>",
" debian-installer=en_US<wait>",
" fb=false<wait>",
" initrd=/install/initrd.gz<wait>",
" kbd-chooser/method=us<wait>",
" keyboard-configuration/layout=USA<wait>",
" keyboard-configuration/variant=USA<wait>",
" locale=en_US<wait>",
" netcfg/get_domain=vm<wait>",
" netcfg/get_hostname=vagrant<wait>",
" noapic<wait>",
" preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg<wait>",
" -- <wait>",
"<enter><wait>"
],
"boot_wait": "10s",
"disk_size": 40960,
"guest_os_type": "Ubuntu_64",
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"http_directory": "http",
"iso_url": "{{user `iso_url`}}",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "sha1",
"ssh_username": "{{user `ssh_username`}}",
"ssh_password": "{{user `ssh_password`}}",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo '{{user `ssh_username`}}' | sudo -S shutdown -P now",
"virtualbox_version_file": ".vbox_version",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"1024"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"2"
]
]
}
],
"post-processors": [
{
"type": "vagrant",
"compression_level": 8
}
],
"provisioners": [
{
"type": "file",
"source": "config-files",
"destination": "/tmp"
},
{
"type": "shell",
"execute_command": "echo '{{user `ssh_password`}}' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"scripts": [
"scripts/base.sh",
"scripts/networking.sh",
"scripts/vmtools.sh",
"scripts/packages.sh"
],
"environment_vars": [
"PACKER_SSH_USERNAME={{user `ssh_username`}}",
"PACKER_SSH_PASSWORD={{user `ssh_password`}}"
]
},
{
"type": "shell",
"execute_command": "{{.Vars}} bash -c '{{.Path}}'",
"scripts": [
"scripts/user.sh"
],
"environment_vars": [
"PACKER_SSH_USERNAME={{user `ssh_username`}}",
"PACKER_SSH_PASSWORD={{user `ssh_password`}}"
]
},
{
"type": "shell",
"execute_command": "echo '{{user `ssh_password`}}' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"scripts": [
"scripts/cleanup.sh",
"scripts/zerodisk.sh"
],
"environment_vars": [
"PACKER_SSH_USERNAME={{user `ssh_username`}}",
"PACKER_SSH_PASSWORD={{user `ssh_password`}}"
]
}
]
}