-
Notifications
You must be signed in to change notification settings - Fork 0
/
solo-server.json
46 lines (37 loc) · 1.05 KB
/
solo-server.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
{
"signpost": {
// Signpost installation configurations
"pid_dir": "/usr/local/signpost/pid",
"log_dir": "/usr/local/signpost/log",
"installation_dir": "/usr/local/signpost/source",
"config_path": "/tmp/config.yaml"
},
"signpost-deps": {
"installation_dir": "/usr/local/signpost/dependencies"
},
"bluepill": {
"bin": "/usr/local/bin/bluepill"
},
"run_list": [
// OS dependencies
"recipe[ubuntu::default]",
"recipe[apt::default]",
"recipe[build-essential::default]",
"recipe[git::default]",
"recipe[ntp::default]",
// Get bluepill for process management
"recipe[bluepill::default]",
// Get VIM, and make it Sebastian friendly
// (maybe a good idea not to shit with this :))
"recipe[vim::default]",
"recipe[vim::seb_friendly]",
// Get OCaml dependencies
"recipe[ocaml::default]",
"recipe[ocaml::signpost]",
// Get the OpenVSwitch
"recipe[openvswitch::default]",
// Signpost packages
"recipe[signpost::default]",
"recipe[signpost::monitoring]"
]
}