mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23: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.
12 lines
548 B
Plaintext
12 lines
548 B
Plaintext
table_name("managed_policies")
|
|
description("The managed configuration policies from AD, MDM, MCX, etc.")
|
|
schema([
|
|
Column("domain", TEXT, "System or manager-chosen domain key"),
|
|
Column("uuid", TEXT, "Optional UUID assigned to policy set"),
|
|
Column("name", TEXT, "Policy key name"),
|
|
Column("value", TEXT, "Policy value"),
|
|
Column("username", TEXT, "Policy applies only this user", superuser=True),
|
|
Column("manual", INTEGER, "1 if policy was loaded manually, otherwise 0"),
|
|
])
|
|
implementation("managed_policy@genManagedPolicies")
|