diff --git a/pages/linux/lchage.md b/pages/linux/lchage.md new file mode 100644 index 000000000..ab42f986d --- /dev/null +++ b/pages/linux/lchage.md @@ -0,0 +1,20 @@ +# lchage + +> Display or change user password policy. +> More information: . + +- Disable password expiration for the user: + +`sudo lchage --date -1 {{username}}` + +- Display the password policy for the user: + +`sudo lchage --list {{username}}` + +- Require password change for the user a certain number of days after the last password change: + +`sudo lchage --maxdays {{number_of_days}} {{username}}` + +- Start warning the user a certain number of days before the password expires: + +`sudo lchage --warndays {{number_of_days}} {{username}}`