blob: 6a1c8a701a8cdc2c6b33e97dfe0c6f89bb19cdfa (
plain)
1
2
3
4
5
6
7
|
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.packagekit.package-install" &&
subject.active == true && subject.local == true &&
subject.isInGroup("wheel")) {
return polkit.Result.YES;
}
});
|