/usr/share/polkit-1/rules.d/org.freedesktop.limba.rules is in limba 0.5.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.limba.refresh-cache" &&
subject.active == true && subject.local == true) {
return polkit.Result.YES;
}
if (action.id == "org.freedesktop.limba.install-software" &&
subject.active == true && subject.local == true &&
subject.isInGroup("sudo")) {
return polkit.Result.YES;
}
if (action.id == "org.freedesktop.limba.remove-software" &&
subject.active == true && subject.local == true &&
subject.isInGroup("sudo")) {
return polkit.Result.YES;
}
if (action.id == "org.freedesktop.limba.update-software" &&
subject.active == true && subject.local == true &&
subject.isInGroup("sudo")) {
return polkit.Result.YES;
}
});
|