mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 03:44:13 -04:00
10 lines
361 B
Plaintext
10 lines
361 B
Plaintext
polkit.addRule(function (action, subject) {
|
|
if (action.id == "org.freedesktop.consolekit.system.restart" ||
|
|
action.id == "org.freedesktop.consolekit.system.stop" ||
|
|
action.id == "org.freedesktop.consolekit.system.suspend" ||
|
|
action.id == "org.freedesktop.consolekit.system.hibernate"
|
|
&& subject.isInGroup("operator")) {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|