You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current user adding logic in TACACS NSS module checks if user->secondary_grp exists and only when it has none-NULL value calls the following command to create user:
Because of this, currently in order to create a user belonging to only one group, we'll need to specify group id in user->gid and group name in user->secondary_grp again.
Should support cases that user->secondary_grp is empty and create user account without using -G correspondingly.
The text was updated successfully, but these errors were encountered:
taoyl-ms
changed the title
TACACS NSS plugin should support user without secondary_grp
[tacacs] NSS plugin should support user without secondary_grp
Apr 20, 2018
1. Fix bug about the return value of `get_value`, it should return `true` if it's OK
2. Fix bug about the type of `MACsecProfile::priority`, the original `uint8_t` will cause a `lexical_convert` failure when the priority is a integer.
3. Polish log in `get_value`.
4. Change the predefined paths for sonic-buildimage integration
Signed-off-by: Ze Gan <ganze718@gmail.com>
Description
Current user adding logic in TACACS NSS module checks if
user->secondary_grp
exists and only when it has none-NULL value calls the following command to create user:Because of this, currently in order to create a user belonging to only one group, we'll need to specify group id in
user->gid
and group name inuser->secondary_grp
again.Should support cases that
user->secondary_grp
is empty and create user account without using-G
correspondingly.The text was updated successfully, but these errors were encountered: