forked from box-cutter/debian-vm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
debian76-i386.json
148 lines (148 loc) · 4.58 KB
/
debian76-i386.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
{
"variables": {
"version": "0.1.0",
"cm": "nocm",
"cm_version": "",
"cleanup_pause": "",
"headless": "",
"update": "false",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"install_vagrant_key": true,
"http_proxy": "{{env `http_proxy`}}",
"https_proxy": "{{env `https_proxy`}}",
"ftp_proxy": "{{env `ftp_proxy`}}",
"rsync_proxy": "{{env `rsync_proxy`}}",
"no_proxy": "{{env `no_proxy`}}",
"iso_url": "http://cdimage.debian.org/cdimage/archive/7.6.0/i386/iso-dvd/debian-7.6.0-i386-DVD-1.iso",
"iso_checksum": "0fa12a274eb218fe7ce46795cbb1f1ba4641f960",
"iso_checksum_type": "sha1"
},
"builders": [{
"vm_name": "debian76-i386",
"type": "vmware-iso",
"guest_os_type": "debian7",
"http_directory": "http",
"iso_url": "{{user `iso_url`}}",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"ssh_username": "{{ user `ssh_username` }}",
"ssh_password": "{{ user `ssh_password` }}",
"ssh_wait_timeout": "10000s",
"tools_upload_flavor": "linux",
"boot_command": [
"<esc><wait>",
"install",
" auto",
" url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg",
" debian-installer=en_US",
" locale=en_US",
" keymap=us",
" netcfg/get_hostname=vagrant",
" netcfg/get_domain=vm ",
"<enter>"
],
"shutdown_command": "echo 'vagrant'|sudo -S shutdown -h now",
"disk_size": 10140,
"vmx_data": {
"memsize": "512",
"numvcpus": "1"
}
},
{
"vm_name": "debian76-i386",
"type": "virtualbox-iso",
"http_directory": "http",
"iso_url": "{{user `iso_url`}}",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"guest_os_type": "Debian",
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"virtualbox_version_file": ".vbox_version",
"ssh_username": "{{ user `ssh_username` }}",
"ssh_password": "{{ user `ssh_password` }}",
"ssh_wait_timeout": "10000s",
"boot_command": [
"<esc><wait>",
"install",
" auto",
" url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg",
" debian-installer=en_US",
" locale=en_US",
" keymap=us",
" netcfg/get_hostname=vagrant",
" netcfg/get_domain=vm ",
"<enter>"
],
"shutdown_command": "echo 'vagrant'|sudo -S shutdown -h now",
"disk_size": 10140,
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "512"],
["modifyvm", "{{.Name}}", "--cpus", "1"]
]
},
{
"vm_name": "debian76-i386",
"type": "parallels-iso",
"http_directory": "http",
"iso_url": "{{user `iso_url`}}",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"parallels_tools_flavor": "lin",
"guest_os_type": "debian",
"prlctl_version_file": ".prlctl_version",
"ssh_username": "{{ user `ssh_username` }}",
"ssh_password": "{{ user `ssh_password` }}",
"ssh_wait_timeout": "10000s",
"boot_command": [
"<esc><wait>",
"install",
" auto",
" url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg",
" debian-installer=en_US",
" locale=en_US",
" keymap=us",
" netcfg/get_hostname=vagrant",
" netcfg/get_domain=vm ",
"<enter>"
],
"shutdown_command": "echo 'vagrant'|sudo -S shutdown -h now",
"disk_size": 10140,
"prlctl": [
["set", "{{.Name}}", "--memsize", "512"],
["set", "{{.Name}}", "--cpus", "1"]
]
}],
"provisioners": [{
"type": "shell",
"environment_vars": [
"CM={{user `cm`}}",
"CM_VERSION={{user `cm_version`}}",
"CLEANUP_PAUSE={{user `cleanup_pause`}}",
"UPDATE={{user `update`}}",
"INSTALL_VAGRANT_KEY={{user `install_vagrant_key`}}",
"SSH_USERNAME={{user `ssh_username`}}",
"SSH_PASSWORD={{user `ssh_password`}}",
"http_proxy={{user `http_proxy`}}",
"https_proxy={{user `https_proxy`}}",
"ftp_proxy={{user `ftp_proxy`}}",
"rsync_proxy={{user `rsync_proxy`}}",
"no_proxy={{user `no_proxy`}}"
],
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
"scripts": [
"script/base.sh",
"script/update.sh",
"script/vagrant.sh",
"script/vmtool.sh",
"script/cmtool.sh",
"script/minimize.sh",
"script/cleanup.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"keep_input_artifact": false,
"output": "box/{{.Provider}}/debian76-i386-{{user `cm`}}{{user `cm_version`}}-{{user `version`}}.box"
}]
}