質問

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?

役に立ちましたか?

解決

for member in `groupmems  -g YOUR_GROUP_NAME --list`;do chage -M 30 $member ;done
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top