mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
d4a3fe2452
Preparation for Windows Tables. We need a Windows process table so that the daemon will run
8 lines
212 B
Plaintext
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")
|