Files
snigdhaos-arctic/archiso/airootfs/etc/polkit-1/rules.d/49-nopasswd_global.rules
Eshan Roy (Eshanized) 08ea8ef82f add policy kit
2024-02-25 16:56:57 +05:30

10 lines
253 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;
}
});