Question

We can use the chage command to update the PASS_MAX_DAYS(maximun number of days a password may be used) of a user. Does linux provide some command or solution to manage this on group level? For example, The PASS_MAX_DAYS of group user is 30 days. This means all the users in user group should change their password in 30 days?

Was it helpful?

Solution

for member in `groupmems  -g YOUR_GROUP_NAME --list`;do chage -M 30 $member ;done
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top