OpenBSD doas: различия между версиями

Материал из OpenBSD-Wiki
Перейти к навигации Перейти к поиску
м
Строка 7: Строка 7:
 
Starting OpenBSD 5.8, doas comes pre-installed as part of base cd set. To use it is super simple; Create a configuration file /etc/doas.conf with the following configuration:
 
Starting OpenBSD 5.8, doas comes pre-installed as part of base cd set. To use it is super simple; Create a configuration file /etc/doas.conf with the following configuration:
  
Начиная с OpenBSD 5.8 входит в состав базовой системы. Начать использовать doas(1) просто, в начале необходимо создать файл конфигурации /etc/doas.conf.
+
Начиная с OpenBSD 5.8 входит в состав базовой системы. Использовать doas(1) крайне просто, достаточно создать файл конфигурации /etc/doas.conf.
  
 
Super liberal OpenBSD system (ohai! happy sysadmin day):
 
Super liberal OpenBSD system (ohai! happy sysadmin day):
 +
 +
Крайне либеральная OpenBSD система:
 
<pre>permit nopass keepenv { ENV PS1 SSH_AUTH_SOCK } :wheel</pre>
 
<pre>permit nopass keepenv { ENV PS1 SSH_AUTH_SOCK } :wheel</pre>
  
 
Permit users in the wheel group to execute commands as root user (defaults to root user if not specified), allow to run everything without requiring password and preserve the environment variables ENV, PS1 and SSH_AUTH_SOCK
 
Permit users in the wheel group to execute commands as root user (defaults to root user if not specified), allow to run everything without requiring password and preserve the environment variables ENV, PS1 and SSH_AUTH_SOCK
 +
 +
Пользователи входящие в группу wheel, выполняют команды от имени пользователя root (root используется по умолчанию, если не указано иное имя пользователя). Дозволяется запускать любые команды без запроса пароля и наследуя значения переменных ENV, PS1 и SSH_AUTH_SOCK.
  
 
Same as above but do prompt the user for a valid password (implicitly, ask user for a password because it doesn't have nopass):
 
Same as above but do prompt the user for a valid password (implicitly, ask user for a password because it doesn't have nopass):

Версия 04:11, 6 сентября 2015

По мотивам

There is a new sudo replacement in town and it's called doas which I use on OpenBSD 5.8 (snapshot). Ted Unangst (tedu) developed it as a simple replacement to sudo (without all bells and whistles) to support the use case for a simple, small sudo-like replacement for OpenBSD. Long live sudo, no more sudo1.

Ted Unangst (tedu@) представил в -current (OpenBSD 5.8) doas(1) -- небольшую, поддерживающую только основные пользовательские функции замену sudo для OpenBSD.

Starting OpenBSD 5.8, doas comes pre-installed as part of base cd set. To use it is super simple; Create a configuration file /etc/doas.conf with the following configuration:

Начиная с OpenBSD 5.8 входит в состав базовой системы. Использовать doas(1) крайне просто, достаточно создать файл конфигурации /etc/doas.conf.

Super liberal OpenBSD system (ohai! happy sysadmin day):

Крайне либеральная OpenBSD система:

permit nopass keepenv { ENV PS1 SSH_AUTH_SOCK } :wheel

Permit users in the wheel group to execute commands as root user (defaults to root user if not specified), allow to run everything without requiring password and preserve the environment variables ENV, PS1 and SSH_AUTH_SOCK

Пользователи входящие в группу wheel, выполняют команды от имени пользователя root (root используется по умолчанию, если не указано иное имя пользователя). Дозволяется запускать любые команды без запроса пароля и наследуя значения переменных ENV, PS1 и SSH_AUTH_SOCK.

Same as above but do prompt the user for a valid password (implicitly, ask user for a password because it doesn't have nopass):

permit keepenv {ENV PS1 SSH_AUTH_SOCK} :wheel

Allow bob to run /bin/sh as fred

permit bob as fred cmd /bin/sh

Disallow users in wheel group to do anything:

deny :wheel

The rules in doas.conf are read top-down. So, if you have a deny :wheel followed by permit nopass :wheel on the next line, then the permit rule will take precedence and be in effect. doas.conf also requires a new line at the end of the file.