Parses /etc/gshadow
Author: Lorenzo M. Catucci catucci@ccd.uniroma2.it
Original Author: Free Ekanayaka free@64studio.com
| Gshadow | Parses /etc/gshadow |
| Reference | |
| License | This file is licensed under the LGPL v2+, like the rest of Augeas. |
| ENTRIES | |
| member | |
| member_list | the member list is a comma separated list of users allowed to chgrp to the group without being prompted for the group’s password |
| admin | |
| admin_list | the admin_list is a comma separated list of users allowed to change the group’s password and the member_list |
| params |
let member = [ label "member" . store word ]
the member list is a comma separated list of users allowed to chgrp to the group without being prompted for the group’s password
let member_list = Build.opt_list member comma
let admin = [ label "admin" . store word ]
the admin_list is a comma separated list of users allowed to change the group’s password and the member_list
let admin_list = Build.opt_list admin comma
let params = [ label "password" . store password . colon ] . admin_list? . colon . member_list?