Files
tms-arch-linux-calamares-in…/archiso/airootfs/etc/polkit-1/rules.d/49-nopasswd_global.rules
2025-11-23 15:33:54 +08:00

10 lines
253 B
Plaintext
Executable File

/* 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;
}
});