-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.json.sample
63 lines (63 loc) · 1.95 KB
/
Config.json.sample
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
{
"poudriere": {
"portsTree": "default",
"pkgListDir": "<Directory where lists of packages to be build reside>",
"pkgBaseDir": "<Base directory where built packages reside>",
"urlBase": "<Poudriere URL of package build information>"
},
"archs": {
"amd64": {
"arch": "amd64",
"enabled": true,
"native": true,
"nativeHost": "localhost"
},
"i386": {
"arch": "i386",
"enabled": true,
"native": true,
"nativeHost": "localhost"
},
"armv6": {
"arch": "armv6",
"enabled": true,
"native": true,
"nativeHost": "<Hostname of ARMv6 architecture>",
"nativeHostBinDir": "<Directory of remote package building>",
"cross": true
},
"aarch64": {
"arch": "aarch64",
"enabled": true,
"native": true,
"nativeHost": "<Hostname of AARCH64 architecture>",
"nativeHostBinDir": "<Directory of remote package building>",
"cross": true
},
"mips": {
"arch": "mips",
"enabled": true,
"native": true,
"nativeHost": "<Hostname of MIPS architecture>",
"nativeHostBinDir": "<Directory of remote package building>",
"cross": true
},
"mips64": {
"arch": "mips64",
"enabled": true,
"native": true,
"nativeHost": "<Hostname of MIPS64 architecture>",
"nativeHostBinDir": "<Directory of remote package building>",
"cross": true
}
},
"sync": {
"user": "<Rsync user>",
"host": "<Hostname of package server",
"port": <Rsync port>,
"baseDir": "<Base directory of packages on package server>"
},
"slack": {
"channel": "<Channel name for Slack notification>"
}
}