2015-04-09 04:28:24 +00:00
|
|
|
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"),
|
2016-05-18 19:23:52 +00:00
|
|
|
Column("username", TEXT, "Policy applies only this user"),
|
2015-04-09 04:28:24 +00:00
|
|
|
Column("manual", INTEGER, "1 if policy was loaded manually, otherwise 0"),
|
|
|
|
])
|
|
|
|
implementation("managed_policy@genManagedPolicies")
|
2016-09-14 03:37:31 +00:00
|
|
|
fuzz_paths([
|
|
|
|
"/Library/Managed Preferences",
|
|
|
|
])
|