18 lines
566 B
Text
18 lines
566 B
Text
|
polkit.addRule(function(action, subject)
|
||
|
{
|
||
|
if (action.id == "org.freedesktop.policykit.exec" && action.lookup("program") == "/bin/shutdown" && subject.isInGroup("wheel"))
|
||
|
return polkit.Result.YES;
|
||
|
});
|
||
|
|
||
|
polkit.addRule(function(action, subject)
|
||
|
{
|
||
|
if (action.id == "org.freedesktop.policykit.exec" && action.lookup("program") == "/bin/zzz" && subject.isInGroup("wheel"))
|
||
|
return polkit.Result.YES;
|
||
|
});
|
||
|
|
||
|
polkit.addRule(function(action, subject)
|
||
|
{
|
||
|
if (action.id.startsWith("org.freedesktop.udisks2.") && subject.isInGroup("wheel"))
|
||
|
return polkit.Result.YES;
|
||
|
});
|