mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
13 lines
485 B
Plaintext
13 lines
485 B
Plaintext
table_name("augeas", aliases=["configurations"])
|
|
description("Configuration files parsed by augeas.")
|
|
schema([
|
|
Column("node", TEXT, "The node path of the configuration item"),
|
|
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")
|
|
])
|
|
implementation("other/augeas@genAugeas")
|
|
examples([
|
|
"select * from augeas where path = '/etc/hosts'",
|
|
])
|