1
0
mirror of https://github.com/slicer69/doas synced 2024-07-08 19:45:47 +00:00

Fixed typo in README file.

This commit is contained in:
Jesse Smith 2019-09-02 14:10:12 -03:00
parent 354625ddd5
commit 6886689b6b

View File

@ -1,7 +1,7 @@
# doas
A port of OpenBSD's doas which runs on FreeBSD, Linux, NetBSD, and illumos
The doas utility is a program originally written for OpenBSD which allows a user to run a command as though they were another user. Typically doas is used to allow non-privleged users to run commands as though they were the root user. The doas program acts as an alternative to sudo, which is a popular method in the Linux ccommunity for granting admin access to specific users.
The doas utility is a program originally written for OpenBSD which allows a user to run a command as though they were another user. Typically doas is used to allow non-privleged users to run commands as though they were the root user. The doas program acts as an alternative to sudo, which is a popular method in the Linux community for granting admin access to specific users.
The doas program offers two benefits over sudo: its configuration file has a simple syntax and it is smaller, requiring less effort to audit the code. This makes it harder for both admins and coders to make mistakes that potentially open security holes in the system.