osquery-1/specs/darwin/nfs_shares.table
Teddy Reed a105924804 Move specs to a top-level path, add query examples
1. Example queries will run with an (optional) integration test.
2. Fix bad accesses with OS X package BOMs
3. Move spec files from ./osquery/tables/specs to ./specs
4. Remove server parsers (netlib) from client builds.
2015-06-03 10:39:05 -07:00

9 lines
336 B
Plaintext

table_name("nfs_shares")
description("NFS shares exported by the host.")
schema([
Column("share", TEXT, "Filesystem path to the share"),
Column("options", TEXT, "Options string set on the export share"),
Column("readonly", INTEGER, "1 if the share is exported readonly else 0"),
])
implementation("nfs_shares@genNFSShares")