File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
namespace cpp osquery.extensions
2
- namespace py osquery.extensions
3
2
4
3
// / Registry operations use a registry name, plugin name, request/response.
5
4
typedef map<string, string> ExtensionPluginRequest
@@ -69,6 +68,8 @@ service Extension {
69
68
2: string item ,
70
69
// / The thrift-equivilent of an osquery::PluginRequest.
71
70
3: ExtensionPluginRequest request ),
71
+ // / Request that an extension shutdown (does not apply to managers).
72
+ void shutdown (),
72
73
}
73
74
74
75
// / The extension manager is run by the osquery core process.
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ def finalize_options(self):
25
25
def run (self ):
26
26
"""Run the command"""
27
27
system ("thrift -gen py -out . osquery.thrift" )
28
- system ("rm osquery/extensions/*-remote" )
29
- system ("rm __init__.py" )
28
+ system ("rm ./ osquery/extensions/*-remote" )
29
+ system ("rm ./ __init__.py" )
30
30
31
31
class LintCommand (Command ):
32
32
"""Run pylint on implementation and test code"""
You can’t perform that action at this time.
0 commit comments