From 27b8b66b555794c514cad9ba2224fa1c0843763a Mon Sep 17 00:00:00 2001 From: Josh Peizer <4177684+jpeizer@users.noreply.github.com> Date: Sat, 27 Jun 2020 04:24:41 -0400 Subject: [PATCH] Update on_boot.sh (#11) The docker creation points to adguardhome and is case sensitive. So either changing the docker example or this line will allow the script to launch adguard on boot successfully. --- AdguardHome/udm-files/on_boot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AdguardHome/udm-files/on_boot.sh b/AdguardHome/udm-files/on_boot.sh index 10b85370..79aeb646 100644 --- a/AdguardHome/udm-files/on_boot.sh +++ b/AdguardHome/udm-files/on_boot.sh @@ -16,7 +16,7 @@ ip link set br5.mac up ip route add 10.0.5.3/32 dev br5.mac #Remove the # on the line below when Docker container is deployed. -#podman start AdguardHome +#podman start adguardhome # Uncomment and adjust these rules if you want to use DNAT to force DNS to this container. # iptables -t nat -C PREROUTING -i br0 -p udp ! --source 10.0.5.3 ! --destination 10.0.5.3 --dport 53 -j DNAT --to 10.0.5.3 || iptables -t nat -A PREROUTING -i br0 -p udp ! --source 10.0.5.3 ! --destination 10.0.5.3 --dport 53 -j DNAT --to 10.0.5.3