mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
10 lines
369 B
Plaintext
10 lines
369 B
Plaintext
table_name("ad_config")
|
|
description("OS X Active Directory configuration.")
|
|
schema([
|
|
Column("name", TEXT, "The OS X-specific configuration name"),
|
|
Column("domain", TEXT, "Active Directory trust domain"),
|
|
Column("option", TEXT, "Canonical name of option"),
|
|
Column("value", TEXT, "Variable typed option value"),
|
|
])
|
|
implementation("ad_config@genADConfig")
|