lunora/airootfs/etc/polkit-1/rules.d/49-nopasswd-calamares.rules
2025-06-30 21:28:57 +02:00

8 lines
230 B
Text

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