-
Notifications
You must be signed in to change notification settings - Fork 28
/
desktop-i386.json
117 lines (117 loc) · 4.03 KB
/
desktop-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
{
"builders": [{
"vm_name": "{{user `vm_name`}}-{{user `version`}}",
"type": "virtualbox-iso",
"format": "ova",
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz noapic ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{ user `hostname` }} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"passwd/user-fullname={{ user `ssh_fullname` }} ",
"passwd/user-password={{ user `ssh_password` }} ",
"passwd/user-password-again={{ user `ssh_password` }} ",
"passwd/username={{ user `ssh_username` }} ",
"initrd=/install/initrd.gz -- <enter>"
],
"disk_size": 40960,
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"guest_os_type": "Ubuntu_64",
"hard_drive_interface": "sata",
"headless": "{{ user `headless` }}",
"http_directory": "http",
"iso_checksum": "{{ user `iso_checksum` }}",
"iso_checksum_type": "sha1",
"iso_urls": [
"{{ user `iso_path` }}/{{ user `iso_name` }}",
"{{ user `iso_url` }}"
],
"shutdown_command": "echo '{{ user `ssh_password` }}'|sudo -S shutdown -P now",
"ssh_password": "{{ user `ssh_password` }}",
"ssh_username": "{{ user `ssh_username` }}",
"ssh_wait_timeout": "10000s",
"vboxmanage": [
[
"modifyvm", "{{.Name}}",
"--memory", "1024",
"--cpus", "1",
"--clipboard", "bidirectional",
"--draganddrop", "bidirectional"
]
],
"virtualbox_version_file": ".vbox_version",
"output_directory": "output-{{user `vm_name`}}"
}],
"provisioners": [{
"type": "shell",
"execute_command": "echo '{{ user `ssh_password` }}' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
"environment_vars": [
"SSH_USERNAME={{user `ssh_username`}}"
],
"script": "scripts/data.sh"
}, {
"type": "file",
"source": "assets",
"destination": "/data"
}, {
"type": "shell",
"execute_command": "echo '{{ user `ssh_password` }}' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
"environment_vars": [
"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`}}",
"JUICEBOX={{user `juicebox`}}"
],
"scripts": [
"scripts/update.sh",
"scripts/desktop.sh",
"scripts/vagrant.sh",
"scripts/sshd.sh",
"scripts/vmtool.sh",
"scripts/provisioning/base.sh",
"scripts/provisioning/git.sh",
"scripts/provisioning/python.sh",
"scripts/provisioning/nodejs.sh",
"scripts/provisioning/ruby.sh",
"scripts/provisioning/mongodb.sh",
"scripts/provisioning/redis.sh",
"scripts/provisioning/postgresql.sh",
"scripts/provisioning/sublime-text-3.sh",
"scripts/provisioning/google-chrome.sh",
"scripts/provisioning/firefox.sh",
"scripts/provisioning/desktop.sh",
"scripts/minimize.sh",
"scripts/cleanup.sh"
]
}],
"post-processors": [{
"keep_input_artifact": true,
"output": "box/{{.Provider}}/{{user `vm_name`}}-{{user `version`}}.box",
"type": "vagrant",
"vagrantfile_template": "tpl/vagrantfile-desktop.tpl",
"compression_level": 9
}],
"variables": {
"vm_name": "juicebox-desktop-i386",
"cleanup_pause": "0",
"headless": "false",
"install_vagrant_key": "true",
"iso_checksum": "a01ef934fe61e8fbbb78d644f9703177a9b62ca1",
"iso_name": "ubuntu-14.04.3-server-i386.iso",
"iso_path": "iso",
"iso_url": "http://releases.ubuntu.com/14.04/ubuntu-14.04.3-server-i386.iso",
"hostname": "juicebox",
"ssh_fullname": "juicebox",
"ssh_password": "juicebox",
"ssh_username": "juicebox",
"update": "true",
"version": "1.4.0",
"juicebox": "desktop"
}
}