-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprograms.cfg
128 lines (108 loc) · 3.19 KB
/
programs.cfg
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
125
126
127
128
{
["libnet"] = {
name = "Simple Network",
description = "Provides a simple API sending messages over the network support rate limiting and fragmentation",
authors = "Dreglor",
note = "",
repo = "tree/master/libnet",
files = {
[":master/libnet/package"] = "/",
},
},
["liblog"] = {
name = "Simple Log",
description = "Provides a simple API for logging that supports logging levels and several ways of logging (screen, file, network)",
authors = "Dreglor",
note = "",
repo = "tree/master/liblog",
files = {
[":master/liblog/package"] = "/",
},
dependencies = {
["libnet"] = "/",
},
},
["libdrone"] = {
name = "Drone Library",
description = "Provides the implementation for the droned service",
authors = "Dreglor",
note = "",
repo = "tree/master/libdrone",
files = {
[":master/libdrone/package"] = "/",
},
dependencies = {
["liblog"] = "/",
["libnet"] = "/",
},
},
["libbaas"] = {
name = "Bees as a Service",
description = "provides the implementation for the Bees as a service",
authors = "Dreglor",
note = "",
repo = "tree/master/baas",
files = {
[":master/libbaas/package"] = "/",
},
dependencies = {
["liblog"] = "/",
["libdrone"] = "/",
["droned"] = "/",
},
},
["droneutils"] = {
name = "Drone Utilities",
description = "provides simple programs to help manage drones",
authors = "Dreglor",
note = "",
repo = "tree/master/droneutils",
files = {
[":master/droneutils/package"] = "/",
},
dependencies = {
["liblog"] = "/",
["libdrone"] = "/",
},
},
["droned"] = {
name = "Drone Deamon",
description = "Provides a super simple service for Remote code execution (RCE)",
authors = "Dreglor",
note = "",
repo = "tree/master/baas",
files = {
[":master/droned/package"] = "//",
},
dependencies = {
["libdrone"] = "/",
},
},
["baasd"] = {
name = "Bees as a Service",
description = "Provides a controller api for interacting with 'drone' clients that are specific designed to interact with forestry's alveary",
authors = "Dreglor",
note = "",
repo = "tree/master/baas",
files = {
[":master/baasd/package"] = "//",
},
dependencies = {
["libbaas"] = "/",
},
},
["logsinkd"] = {
name = "Log Sink Deamon",
description = "Provides a sink for log messages over the network displaying and recording them locally for better debugging of headless clients",
authors = "Dreglor",
note = "",
repo = "tree/master/baas",
files = {
[":master/logsinkd/package"] = "//",
},
dependencies = {
["liblog"] = "/",
["liblog"] = "/",
},
},
}