Skip to content

Commit

Permalink
Merge pull request #698 from openziti/bugfix/resolvectl_missing
Browse files Browse the repository at this point in the history
Allows dns autoconfiguration to continue when resolvectl is missing
  • Loading branch information
sabedevops committed Aug 3, 2023
2 parents 12d3353 + 339123a commit 172e734
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions programs/ziti-edge-tunnel/netif_driver/linux/tun.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,7 @@ static void find_dns_updater() {
dns_updater = dns_update_systemd_resolve;
return;
} else {
ZITI_LOG(ERROR, "systemd-resolved DBus name found, but could not find a way to configure systemd-resolved");
exit(1);
ZITI_LOG(WARN, "systemd-resolved DBus name found, but could not find a way to configure systemd-resolved");
}
} else {
ZITI_LOG(TRACE, "systemd-resolved DBus name is NOT acquired");
Expand Down

0 comments on commit 172e734

Please sign in to comment.