mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
637eb104b8
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
12 lines
485 B
Plaintext
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")
|