From 7574c5514d7d3110258e2f6f5572844015e64a5a Mon Sep 17 00:00:00 2001 From: matdevdug Date: Tue, 14 Sep 2021 13:57:09 +0200 Subject: [PATCH] fix: changing the flag passed to dnsmasq from --no-daemon to --keep-in-foreground --- 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