Doas/ru: Difference between revisions

Unabomberlive (talk | contribs)
Created page with "== Настройка =="
Unabomberlive (talk | contribs)
Created page with "<syntaxhighlight lang="nix"> security.sudo.enable = false; security.doas.enable = true; security.doas.extraRules = [{ users = ["foo"]; # Необязательно, сохраняет переменные окружения при выполнении команд # например, сохраняет ваш NIX_PATH при применении вашего конфига keepEnv = true; persist = true; # Необязательно, не запрашиват..."
Line 13: Line 13:
The following configuration will give the user <code>foo</code> the ability to execute commands as the super user via <code>doas</code>, while disabling the <code>sudo</code> command.
The following configuration will give the user <code>foo</code> the ability to execute commands as the super user via <code>doas</code>, while disabling the <code>sudo</code> command.
</div>
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
security.sudo.enable = false;
security.doas.enable = true;
security.doas.enable = true;
security.sudo.enable = false;
security.doas.extraRules = [{
security.doas.extraRules = [{
   users = ["foo"];
   users = ["foo"];
   # Optional, retains environment variables while running commands
   # Необязательно, сохраняет переменные окружения при выполнении команд
   # e.g. retains your NIX_PATH when applying your config
   # например, сохраняет ваш NIX_PATH при применении вашего конфига
   keepEnv = true;  
   keepEnv = true;  
   persist = true;  # Optional, don't ask for the password for some time, after a successfully authentication
   persist = true;  # Необязательно, не запрашивать пароль в течение некоторого времени после успешной аутентификации
}];
}];
</syntaxhighlight>
</syntaxhighlight>
</div>
[[Category:Applications]]
[[Category:Applications]]
[[Category:Security]]
[[Category:Security]]