osquery-1/specs/darwin/launchd_overrides.table
Teddy Reed a105924804 Move specs to a top-level path, add query examples
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.
2015-06-03 10:39:05 -07:00

11 lines
457 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"),
])
implementation("launchd@genLaunchdOverrides")