blob: 25e2e43f84814f7ae258295b2452b647122014db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
cat <<EOF
To allow members of the wheel group to run commands as other users,
create the file /etc/doas.conf with the following content:
permit :wheel
Refer to doas(1) and doas.conf(5) for more information.
Note that opendoas is a work in progress. From README.md:
Please do not deploy yet in a critical environment! Of note,
`doas` semantics may yet change, and I haven't performed even
a trivial security audit of my additions.
EOF
}
|