osquery-1/specs/darwin/launchd_overrides.table
seph 637eb104b8 Spelling (#5256)
Summary:
While running `misspell` on a different codebase. I happened to notice that some misspellings in the osquery code base. So, I fixed them
Pull Request resolved: https://github.com/facebook/osquery/pull/5256

Reviewed By: guliashvili

Differential Revision: D13670897

Pulled By: fmanco

fbshipit-source-id: 5d33d858284955c376e8c3980acdf366d4edf3d3
2019-01-16 08:17:07 -08:00

12 lines
485 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, "Overridden 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")