KDE4: fix suid for kcheckpass, although suid doesn't seem to be needed if you use PAM
svn path=/nixos/trunk/; revision=23906
This commit is contained in:
parent
910103246f
commit
9b7533c2fd
|
@ -47,7 +47,13 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
security.setuidPrograms = [ "kcheckpass" ];
|
||||
security.setuidOwners = [ {
|
||||
program = "kcheckpass";
|
||||
source = "${pkgs.kde4.kdebase_workspace}/lib/kde4/libexec/kcheckpass";
|
||||
owner = "root";
|
||||
group = "root";
|
||||
setuid = true;
|
||||
} ];
|
||||
|
||||
environment = {
|
||||
kdePackages = [
|
||||
|
|
Loading…
Reference in New Issue