mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
13 lines
514 B
Plaintext
13 lines
514 B
Plaintext
table_name("augeas", aliases=["configurations"])
|
|
description("Configuration files parsed by augeas.")
|
|
schema([
|
|
Column("node", TEXT, "The node path of the configuration item", index=True),
|
|
Column("value", TEXT, "The value of the configuration item"),
|
|
Column("label", TEXT, "The label of the configuration item"),
|
|
Column("path", TEXT, "The path to the configuration file", additional=True)
|
|
])
|
|
implementation("other/augeas@genAugeas")
|
|
examples([
|
|
"select * from augeas where path = '/etc/hosts'",
|
|
])
|