osquery-1/specs/darwin/launchd_overrides.table
Teddy Reed b28c4d8d0f Introduce table options (#2101)
Table options includes a change to the Registry::call API for TablePlugins.
When requesting route information or the 'columns' action, a new 'op' key is included.
2016-05-18 12:23:52 -07:00

12 lines
484 B
Plaintext

table_name("launchd_overrides")
description("Override keys, per user, for LaunchDaemons and Agents.")
schema([
Column("label", TEXT, "Daemon or agent service name"),
Column("key", TEXT, "Name of the override key"),
Column("value", TEXT, "Overriden value"),
Column("uid", BIGINT, "User ID applied to the override, 0 applies to all"),
Column("path", TEXT, "Path to daemon or agent plist"),
])
attributes(cacheable=True)
implementation("launchd@genLaunchdOverrides")