osquery-1/specs/posix/user_groups.table
artemdinaburg d4a3fe2452 Windows Daemon/Shell: Initial support for Windows tables (#2182)
Preparation for Windows Tables. We need a Windows process table so that the daemon will run
2016-06-23 16:04:11 -07:00

8 lines
212 B
Plaintext

table_name("user_groups")
description("Local system user group relationships.")
schema([
Column("uid", BIGINT, "User ID"),
Column("gid", BIGINT, "Group ID")
])
implementation("user_groups@genUserGroups")