osquery-1/specs/darwin/homebrew_packages.table
Teddy Reed b28c4d8d0f Introduce table options (#2101)
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.
2016-05-18 12:23:52 -07:00

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")