blob: d3234c20c748c74ecbc330d69cec3ad8793a08e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
polkit.addRule(function(action, subject) {
if (action.id == "org.debian.pcsc-lite.access_pcsc" &&
subject.user == "sigul") {
return polkit.Result.YES;
}
});
polkit.addRule(function(action, subject) {
if (action.id == "org.debian.pcsc-lite.access_card" &&
subject.user == "sigul") {
return polkit.Result.YES; }
});
|