Aded sample doas.conf file.

Closes GitHub issue #29
This commit is contained in:
Jesse Smith 2020-01-04 19:56:46 -04:00
parent 5cd77cea5f
commit 3f69b3e4f5

18
doas.conf.sample Normal file
View file

@ -0,0 +1,18 @@
# Sample file for doas
# Please see doas.conf manual page for information on setting
# up a doas.conf file.
# Permit members of the wheel group to perform actions as root.
permit :wheel
# Permit user alice to run commands a root user.
permit alice as root
# Permit user bob to run programs as root, maintaining
# envrionment variables. Useful for GUI applications.
permit keepenv bob as root
# Permit user cindy to run only the pkg package manager as root
# to perform package updates and upgrades.
permit cindy as root cmd pkg update
permit cindy as root cmd pkg upgrade