Merge pull request #256294 from mkg20001/mkg/sudo-rs

This commit is contained in:
Maciej Krüger 2023-09-20 14:00:18 +02:00 committed by GitHub
commit 63ae6fa5c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
# Some tests to ensure sudo is working properly.
{ pkgs, sudo-rs, ... }:
{ pkgs, ... }:
let
inherit (pkgs.lib) mkIf optionalString;
password = "helloworld";
@ -24,7 +24,7 @@ in
security.sudo = {
enable = true;
package = sudo-rs;
package = pkgs.sudo-rs;
wheelNeedsPassword = false;
extraRules = [
@ -55,7 +55,7 @@ in
};
security.sudo = {
package = sudo-rs;
package = pkgs.sudo-rs;
enable = true;
wheelNeedsPassword = false;
execWheelOnly = true;
@ -93,5 +93,5 @@ in
with subtest("non-wheel users should be unable to run sudo thanks to execWheelOnly"):
strict.fail('faketty -- su - noadmin -c "sudo --help"')
'';;
'';
})