-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Part 1 of building tables, easier tables, not tested
- Loading branch information
1 parent
c38be69
commit e2710ec
Showing
4 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
//go:build windows | ||
|
||
package table | ||
|
||
import ( | ||
"github.com/kolide/launcher/pkg/osquery/tables/xconf" | ||
"github.com/kolide/launcher/pkg/osquery/tables/xrdb" | ||
"github.com/osquery/osquery-go" | ||
) | ||
|
||
func PlatformTables() []osquery.OsqueryPlugin { | ||
return []osquery.OsqueryPlugin{ | ||
// Kolide tables | ||
xconf.TablePlugin(serverClient, kolideLogger), // table name is "kolide_xconf" | ||
xrdb.TablePlugin(serverClient, kolideLogger), // table name is "kolide_xrdb" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters