Files
euri-iso/iso-profiles/euri/live-overlay/etc/polkit-1/rules.d/90-live.rules
T

9 lines
252 B
Plaintext

/* Allow members of the wheel group to execute any actions
* without password authentication, similar to "sudo NOPASSWD:"
*/
polkit.addRule(function(action, subject) {
if (subject.isInGroup("wheel")) {
return polkit.Result.YES;
}
});