Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/linux/lchage Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# lchage
> Display or change user password policy.
> More information: <https://manned.org/lchage>.
- 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}}`