mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
9 lines
294 B
Plaintext
9 lines
294 B
Plaintext
table_name("cups_destinations")
|
|
description("Returns all configured printers.")
|
|
schema([
|
|
Column("name", TEXT, "Name of the printer"),
|
|
Column("option_name", TEXT, "Option name"),
|
|
Column("option_value", TEXT, "Option value")
|
|
])
|
|
implementation("cups_destinations@genCupsDestinations")
|