12 lines
370 B
Text
12 lines
370 B
Text
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; }
|
|
});
|