Displaying 2 results from an estimated 2 matches for "jointgroup".
2017 Apr 19
2
PUPPET - group IDS
...emit of this mailking list...
We use puppet, and Im trying to come up with "code" that will create two user accounts with a shared groiup ID
eg?
user1 with UID 1000user 2 with UID 1001
but I would like them BOTH to share the GID of 2000
I've tried the following
accounts::groups:? ? jointgroup:? ? ? ? gid: '2000'
accounts::users:
? ? user1:? ? ? ? uid: '1000'? ? ? ? gid: '2000'? ? ? ? home: '/home/user1'? ? ? ? shell: '/bin/bash'? ? ? ? password: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
? ? user2:? ? ? ? uid: '1001'? ? ? ? gid: '200...
2017 Apr 19
0
PUPPET - group IDS
...t;
> We use puppet, and Im trying to come up with "code" that will create two user accounts with a shared groiup ID
> eg?
> user1 with UID 1000user 2 with UID 1001
> but I would like them BOTH to share the GID of 2000
> I've tried the following
> accounts::groups:? ? jointgroup:? ? ? ? gid: '2000'
> accounts::users:
> ? ? user1:? ? ? ? uid: '1000'? ? ? ? gid: '2000'? ? ? ? home: '/home/user1'? ? ? ? shell: '/bin/bash'? ? ? ? password: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
> ? ? user2:? ? ? ? uid: '1001'? ? ? ?...