-
Notifications
You must be signed in to change notification settings - Fork 674
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a passwd field to Group #1338
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What systems actually use the group password? I for one have never seen it actually used.
I haven't actually seen it used either, but I'm working on a backend to nscd and glibc seems to expect a group password as part of the response. Given that passwd is mentioned in the man page, is there a reason to not include it here? |
@asomers given this any more thought? |
Yes, I think it seems reasonable. But could you add a CHANGELOG entry and rebase? |
63da96e
to
1e33e77
Compare
1e33e77
to
8dc757b
Compare
Done! Sorry for the delay. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bors r+
Adds a
passwd
field to unistd::Group. Thegr_passwd
field exists onlibc::group
and wasn't exposed.I didn't see tests for
from(libc:group)
for eitherUser
orPassword
. Let me know if there are other tests I should add!