mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 01:25:20 +00:00
11 lines
381 B
Plaintext
11 lines
381 B
Plaintext
table_name("pkg_packages")
|
|
description("pkgng packages that are currently installed on the host system.")
|
|
schema([
|
|
Column("name", TEXT, "Package name"),
|
|
Column("version", TEXT, "Package version"),
|
|
Column("flatsize", BIGINT, "Package size in bytes"),
|
|
Column("arch", TEXT, "Architecture(s) supported"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("@genPkgPackages")
|