forked from lavabit/robox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
developer-virtualbox.json
124 lines (124 loc) · 4.29 KB
/
developer-virtualbox.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
{
"variables": {
"box_version": "{{env `VERSION`}}"
},
"provisioners": [
{
"type": "shell",
"scripts": [
"scripts/centos6/yum.sh",
"scripts/centos6/base.sh",
"scripts/centos6/network.sh"
],
"start_retry_timeout": "15m",
"expect_disconnect": "true",
"only": [
"magma-developer-virtualbox"
]
},
{
"type": "shell",
"scripts": [
"scripts/centos6/kernel.sh",
"scripts/centos6/vga.sh",
"scripts/centos6/virtualbox.sh",
"scripts/centos6/parallels.sh",
"scripts/centos6/vmware.sh",
"scripts/centos6/qemu.sh",
"scripts/centos6/postfix.sh",
"scripts/centos6/vagrant.sh",
"scripts/centos6/sshd.sh",
"scripts/centos6/randomness.sh",
"scripts/centos6/updatedb.sh",
"scripts/centos6/developer.sh",
"scripts/centos6/tuning.sh",
"scripts/centos6/cleanup.sh"
],
"pause_before": "120s",
"start_retry_timeout": "15m",
"expect_disconnect": "true",
"only": [
"magma-developer-virtualbox"
]
},
{
"scripts": [
"scripts/common/motd.sh",
"scripts/common/keys.sh",
"scripts/common/machine.sh",
"scripts/common/leases.sh",
"scripts/common/localtime.sh",
"scripts/common/zerodisk.sh",
"scripts/common/lockout.sh"
],
"type": "shell",
"start_retry_timeout": "15m",
"expect_disconnect": "true"
}
],
"builders": [
{
"type": "virtualbox-iso",
"name": "magma-developer-virtualbox",
"vm_name": "magma-developer-virtualbox",
"output_directory": "output/magma-developer-virtualbox",
"boot_wait": "20s",
"boot_command": [
"<tab> ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/magma.centos6.developer.ks<enter><wait>"
],
"disk_size": 131072,
"cpus": 4,
"memory": 4096,
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--vram",
"64"
]
],
"guest_os_type": "RedHat_64",
"http_directory": "http",
"headless": true,
"vrdp_bind_address": "127.0.0.1",
"vrdp_port_min": 11000,
"vrdp_port_max": 12000,
"iso_url": "https://vault.centos.org/6.10/isos/x86_64/CentOS-6.10-x86_64-minimal.iso",
"iso_checksum": "sha256:7c0dee2a0494dabd84809b72ddb4b761f9ef92b78a506aef709b531c54d30770",
"ssh_username": "root",
"ssh_password": "magma",
"ssh_port": 22,
"ssh_timeout": "7200s",
"shutdown_command": "sudo -S shutdown -P now",
"guest_additions_url": "https://download.virtualbox.org/virtualbox/5.2.44/VBoxGuestAdditions_5.2.44.iso",
"guest_additions_sha256": "9883ee443a309f4ffa1d5dee2833f9e35ced598686c36d159f410e5edbac1ca4",
"guest_additions_path": "VBoxGuestAdditions.iso",
"virtualbox_version_file": "VBoxVersion.txt"
}
],
"post-processors": [
[
{
"type": "vagrant",
"compression_level": 9,
"keep_input_artifact": false,
"vagrantfile_template": "tpl/developer.rb",
"output": "output/{{build_name}}-{{user `box_version`}}.box",
"include": [
"tpl/lavabit/info.json"
],
"only": [
"magma-developer-virtualbox"
]
},
{
"type": "checksum",
"checksum_types": [
"sha256"
],
"keep_input_artifact": false,
"output": "output/{{build_name}}-{{user `box_version`}}.box.sha256"
}
]
]
}