-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathubuntu-12.04.3-desktop-amd64.json
104 lines (104 loc) · 2.75 KB
/
ubuntu-12.04.3-desktop-amd64.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
{
"builders": [
{
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg <wait>",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us <wait>",
"hostname={{ .Name }} <wait>",
"fb=false debconf/frontend=noninteractive <wait>",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=us keyboard-configuration/variant=us console-setup/ask_detect=false <wait>",
"initrd=/install/initrd.gz -- <enter><wait>"
],
"boot_wait": "4s",
"disk_size": 32000,
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"guest_os_type": "Ubuntu_64",
"http_directory": "http",
"iso_checksum": "46e0fac240154bf59a11426a47a61363",
"iso_checksum_type": "md5",
"iso_url": "http://releases.ubuntu.com/precise/ubuntu-12.04.4-alternate-amd64.iso",
"shutdown_command": "echo 'shutdown -P now' > shutdown.sh; echo 'vagrant'|sudo -S sh 'shutdown.sh'",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_username": "vagrant",
"ssh_wait_timeout": "10000s",
"type": "virtualbox-iso",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"8000"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"2"
],
[
"modifyvm",
"{{.Name}}",
"--vram",
"128"
],
[
"modifyvm",
"{{.Name}}",
"--ioapic",
"on"
],
[
"modifyvm",
"{{.Name}}",
"--rtcuseutc",
"on"
],
[
"modifyvm",
"{{.Name}}",
"--accelerate3d",
"on"
],
[
"modifyvm",
"{{.Name}}",
"--clipboard",
"bidirectional"
]
],
"virtualbox_version_file": ".vbox_version"
}
],
"post-processors": [
{
"output": "ubuntu-12.04.3-desktop-amd64.box",
"type": "vagrant"
}
],
"provisioners": [
{
"destination": "/tmp",
"source": "files",
"type": "file"
},
{
"execute_command": "echo 'vagrant'|sudo -S sh '{{.Path}}'",
"scripts": [
"scripts/build_time.sh",
"scripts/apt.sh",
"scripts/vbox.sh",
"scripts/sudo.sh",
"scripts/vagrant.sh",
"scripts/java.sh",
"scripts/eclipse.sh",
"scripts/maven.sh",
"scripts/jboss.sh",
"scripts/git.sh",
"scripts/cleanup.sh"
],
"type": "shell"
}
]
}