blob: c152890aabd70607b45358655869a8825e4bff3b (
plain)
1
2
3
4
5
6
7
8
|
/* 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;
}
});
|