mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
13 lines
464 B
Plaintext
13 lines
464 B
Plaintext
table_name("osquery_flags")
|
|
description("Configurable flags that modify osquery's behavior.")
|
|
schema([
|
|
Column("name", TEXT, "Flag name"),
|
|
Column("type", TEXT, "Flag type"),
|
|
Column("description", TEXT, "Flag description"),
|
|
Column("default_value", TEXT, "Flag default value"),
|
|
Column("value", TEXT, "Flag value"),
|
|
Column("shell_only", INTEGER, "Is the flag shell only?"),
|
|
])
|
|
attributes(utility=True)
|
|
implementation("osquery@genOsqueryFlags")
|