forked from ScenicVerve/freelawmachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflm-packer.json
69 lines (69 loc) · 2.53 KB
/
flm-packer.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
{
"variables": {
"ubuntu_iso": "ubuntu-14.04.3-server-i386.iso",
"atlas_username": "freelawproject",
"atlas_name": "freelawbox32",
"version": "1.5.6"
},
"provisioners": [
{
"type": "shell",
"scripts": [
"scripts/vagrant.sh",
"scripts/courtlistener.sh",
"scripts/juriscraper.sh",
"scripts/postgresql.sh",
"scripts/solr.sh",
"scripts/tesseract.sh",
"scripts/redis.sh",
"scripts/celery.sh",
"scripts/init.sh",
"scripts/zerodisk.sh"
],
"override": {
"virtualbox-iso": {
"execute_command": "echo 'vagrant'|sudo -S bash '{{.Path}}'"
}
}
}
],
"builders": [
{
"type": "virtualbox-iso",
"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=freelawbox ",
"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>"
],
"headless": true,
"boot_wait": "10s",
"disk_size": 20480,
"guest_os_type": "Ubuntu",
"http_directory": "http",
"iso_checksum": "a5c02e25a8f6ab335269adb1a6c176edff075093b90854439b4a90fce9b31f28",
"iso_checksum_type": "sha256",
"iso_urls": [
"iso/{{user `ubuntu_iso`}}",
"http://mirror.pnl.gov/releases/trusty/ubuntu-14.04.3-server-i386.iso"
],
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo '/sbin/halt -h -p' > shutdown.sh; echo 'vagrant'|sudo -S bash 'shutdown.sh'",
"guest_additions_path": "VBoxGuestAdditions.iso",
"virtualbox_version_file": ".vbox_version"
}
],
"post-processors": [
[{
"type": "vagrant",
"keep_input_artifact": false,
"output": "{{user `atlas_name`}}-{{user `version`}}.box"
}]
]
}