blob: 2f64ab3bfb50455ee5c698a6ea654c61398c90ae (
plain)
1
2
3
4
5
6
|
// Permit ziti-edge-tunnel to configure link DNS
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.resolve1.") == 0 && subject.user == "ziti") {
return polkit.Result.YES;
}
});
|