8 lines
249 B
Plaintext
8 lines
249 B
Plaintext
/* Allow users in the entropy group to launch system upgrades */
|
|
polkit.addRule(function(action, subject) {
|
|
if (action.id == "org.sabayon.RigoDaemon.upgrade" &&
|
|
subject.isInGroup("entropy")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|