You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
408 B
27 lines
408 B
version 1 .
|
|
|
|
Account = <pwent {
|
|
name: string,
|
|
uid: int,
|
|
gid: int,
|
|
info: string,
|
|
home: string,
|
|
shell: string,
|
|
}> .
|
|
|
|
Group = <grent {
|
|
name: string,
|
|
gid: int,
|
|
}> .
|
|
|
|
GroupMember = <group-member @uid int @gid int> .
|
|
|
|
EnsureAccount = <ensure-account @name string @spec Spec> .
|
|
EnsureGroup = <ensure-group @name string @spec Spec> .
|
|
|
|
Spec =
|
|
/ @userAccount =user
|
|
/ @systemAccount =system
|
|
/ @id int
|
|
.
|