calamares/data/49-nopasswd-calamares.rules

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
230 B
Plaintext
Raw Normal View History

2016-09-10 13:57:38 +02:00
/* 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;
}
});