-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubuntu1404-i386.json
114 lines (114 loc) · 3.47 KB
/
ubuntu1404-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
{
"variables": {
"version": "0.1.0",
"cm": "nocm",
"cm_version": "",
"cleanup_pause": "",
"headless": "",
"hostname": "enisa",
"update": "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://releases.ubuntu.com/14.04/ubuntu-14.04.3-server-i386.iso",
"iso_checksum": "352009d5b44f0e97c9558919f0147c0c"
},
"builders": [
{
"vm_name": "enisa-main",
"type": "virtualbox-iso",
"format": "ova",
"http_directory": "http",
"iso_url": "{{ user `iso_url` }}",
"iso_checksum": "{{ user `iso_checksum` }}",
"iso_checksum_type": "md5",
"guest_os_type": "Ubuntu",
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"virtualbox_version_file": ".vbox_version",
"ssh_username": "enisa",
"ssh_password": "enisa",
"ssh_wait_timeout": "10000s",
"headless": "{{ user `headless` }}",
"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=enisa-vm ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- <enter>"
],
"shutdown_command": "echo 'enisa'|sudo -S shutdown -P now",
"disk_size": 25000,
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "1024"],
["modifyvm", "{{.Name}}", "--cpus", "1"],
["modifyvm", "{{.Name}}", "--clipboard", "bidirectional"],
["modifyvm", "{{.Name}}", "--description", "ENISA Virtual Appliance"],
["modifyvm", "{{.Name}}", "--vram", "32"]
]
}],
"provisioners": [
{
"type": "file",
"source": "files/training.zip",
"destination": "/home/enisa/training.zip"
},
{
"type": "file",
"source": "files/mobile.zip",
"destination": "/home/enisa/mobile.zip"
},
{
"type": "file",
"source": "files/distorm3.zip",
"destination": "/home/enisa/distorm3.zip"
},
{
"type": "file",
"source": "files/android-studio-ide-141.2135290-linux.zip",
"destination": "/home/enisa/android-studio-ide-141.2135290-linux.zip"
},
{
"type": "file",
"source": "files/DroidBox_4.1.1-2015-07-10.zip",
"destination": "/home/enisa/DroidBox_4.1.1-2015-07-10.zip"
},
{
"type": "file",
"source": "files/setup.sh",
"destination": "/home/enisa/setup.sh"
},
{
"type": "shell",
"environment_vars": [
"CM={{user `cm`}}",
"CM_VERSION={{user `cm_version`}}",
"CLEANUP_PAUSE={{user `cleanup_pause`}}",
"UPDATE={{user `update`}}",
"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 'enisa' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
"scripts": [
"script/update.sh",
"script/desktop.sh",
"script/motd.sh",
"script/packages.sh",
"script/provision.sh",
"script/vagrant.sh",
"script/sshd.sh",
"script/vmtool.sh",
"script/cmtool.sh",
"script/minimize.sh",
"script/cleanup.sh"
]}
]
}