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