Files
tms-calamares/49-nopasswd-calamares.rules
2025-11-23 16:05:51 +08:00

9 lines
230 B
Plaintext

/* Allow Calamares to be started without password authentication
*/
polkit.addRule(function(action, subject) {
if ((action.id == "com.github.calamares.calamares.pkexec.run"))
{
return polkit.Result.YES;
}
});