mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
b28c4d8d0f
Table options includes a change to the Registry::call API for TablePlugins. When requesting route information or the 'columns' action, a new 'op' key is included.
10 lines
339 B
Plaintext
10 lines
339 B
Plaintext
table_name("homebrew_packages")
|
|
description("The installed homebrew package database.")
|
|
schema([
|
|
Column("name", TEXT, "Package name"),
|
|
Column("path", TEXT, "Package install path"),
|
|
Column("version", TEXT, "Current 'linked' version"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("system/homebrew_packages@genHomebrewPackages")
|