From 731f7ea48a8a1f62de1a63e52b2ed8e245f12ac3 Mon Sep 17 00:00:00 2001 From: Russell Senior Date: Mon, 17 Feb 2020 22:16:10 -0800 Subject: [PATCH] dnsmasq: fix uci-defaults script to exit 0 so it is cleaned up A file, package/network/services/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh, was added in commit 6a2855212096d2c486961a0841b037bae4b75de7, but it does not exit in a way that tells the uci-defaults mechanism that it succeeded, and so it is not cleaned up after running successfully. Add an exit 0 to the end to correct that. Signed-off-by: Russell Senior --- .../dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/network/services/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh b/package/network/services/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh index c78faa112d..480e2df471 100755 --- a/package/network/services/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh +++ b/package/network/services/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh @@ -4,3 +4,5 @@ uci set dhcp.@dnsmasq[0].resolvfile="/tmp/resolv.conf.d/resolv.conf.auto" uci commit dhcp } + +exit 0