chage: fix examples and use long arguments (#6541)

This commit is contained in:
Axel Navarro
2021-09-20 09:59:21 -03:00
committed by GitHub
parent e999732780
commit 61da0633de
3 changed files with 15 additions and 15 deletions

View File

@@ -5,20 +5,20 @@
- List password information for the user:
`chage -l {{username}}`
`chage --list {{username}}`
- Enable password expiration in 10 days:
`sudo chage -M {{10}} {{username}}`
`sudo chage --maxdays {{10}} {{username}}`
- Disable password expiration:
`sudo chage -M -1 {{username}}`
`sudo chage --maxdays {{-1}} {{username}}`
- Set account expiration date:
`sudo chage -E {{YYYY-MM-DD}}`
`sudo chage --expiredate {{YYYY-MM-DD}} {{username}}`
- Force user to change password on next log in:
`sudo chage -d 0`
`sudo chage --lastday {{0}} {{username}}`