From b96131f0f7663c207d50e1937078da1c3e3ae77a Mon Sep 17 00:00:00 2001 From: maduggan <53565912+maduggan@users.noreply.github.com> Date: Fri, 8 Oct 2021 22:51:09 +0200 Subject: [PATCH] fix: changing the flag passed to dnsmasq from --no-daemon to --keep-in-foreground (#208) Co-authored-by: matdevdug --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9b1814b2..2d6cb8ab 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -211,7 +211,7 @@ DNSMASQ mkdir -p /etc/service/dnsmasq cat </etc/service/dnsmasq/run #!/bin/sh -exec /usr/sbin/dnsmasq --no-daemon +exec /usr/sbin/dnsmasq --keep-in-foreground RUNIT chmod +x /etc/service/dnsmasq/run