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