doas: add page (#3939)

client-spec/clarity
user56441 2020-03-28 01:28:20 +00:00 committed by GitHub
parent f5026bd6f9
commit 5d5bc68fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages/common/doas.md Normal file
View File

@ -0,0 +1,24 @@
# doas
> Executes a command as another user.
> More information: <https://man.openbsd.org/doas>.
- Run a command as root:
`doas {{command}}`
- Run a command as another user:
`doas -u {{user}} {{command}}`
- Launch the default shell as root:
`doas -s`
- Parse a config file and check if the execution of a command as another user is allowed:
`doas -C {{config_file}} {{command}}`
- Make `doas` request a password even after it was supplied earlier:
`doas -L`