Comment 5 for bug 1396362

Revision history for this message
Chris Vigelius (chris-vigelius) wrote : Re: Support UID and GID specification in user and group definitions

better patch which allows to specify gid for groups, too.

to specify gid, let group key point to a dict with 'gid' (and optional 'members') keys:

groups:
    foo:
       gid = '998'
       members: [u1, u2]
    bar:
       gid = '999'
       ...