From 339123a38687213868852d8e99dab43ee3f14acd Mon Sep 17 00:00:00 2001 From: "Steven A. Broderick Elias" Date: Thu, 3 Aug 2023 12:01:13 -0400 Subject: [PATCH] Allows dns autoconfiguration to continue when resolvectl is missing --- programs/ziti-edge-tunnel/netif_driver/linux/tun.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/programs/ziti-edge-tunnel/netif_driver/linux/tun.c b/programs/ziti-edge-tunnel/netif_driver/linux/tun.c index 122fd4e6..97f9f5e2 100644 --- a/programs/ziti-edge-tunnel/netif_driver/linux/tun.c +++ b/programs/ziti-edge-tunnel/netif_driver/linux/tun.c @@ -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");