Changed file path tokens and batch mode description.

coverage
fuerbringer 2016-11-13 13:17:34 +01:00 committed by Agniva De Sarker
parent fc981c2116
commit 4f0a7b9a48
1 changed files with 6 additions and 6 deletions

View File

@ -4,20 +4,20 @@
- Create/overwrite htpasswd file:
`htpasswd -c {{file_path}} {{user_name}}`
`htpasswd -c {{path/to/file}} {{user_name}}`
- Add user to htpasswd file or update existing user:
`htpasswd {{file_path}} {{user_name}}`
`htpasswd {{path/to/file}} {{user_name}}`
- Add user to htpasswd file without password verification (for script usage):
- Add user to htpasswd file in batch mode without password verification (for script usage):
`htpasswd -b {{file_path}} {{user_name}} {{password}}`
`htpasswd -b {{path/to/file}} {{user_name}} {{password}}`
- Delete user from htpasswd file:
`htpasswd -D {{file_path}} {{user_name}}`
`htpasswd -D {{path/to/file}} {{user_name}}`
- Verify user password:
`htpasswd -v {{file_path}} {{user_name}}`
`htpasswd -v {{path/to/file}} {{user_name}}`