From 8ad22841ab7616ff8fdac2f96fd9e5c5da895f97 Mon Sep 17 00:00:00 2001 From: Eugene Burkov Date: Mon, 20 Jun 2022 15:24:11 +0300 Subject: [PATCH] cherry-pick: 4677 openwrt service Merge in DNS/adguard-home from 4677-openwrt-service to master Updates #4677. Squashed commit of the following: commit 6aed4036d3338a601a7ec5ef1ca74a407ae4c0e2 Author: Eugene Burkov Date: Mon Jun 20 14:49:33 2022 +0300 home: imp docs commit 54e32fa47ed11e50c6405ced90a400e4e69f021d Author: Eugene Burkov Date: Mon Jun 20 14:30:08 2022 +0300 home: fix wrt svc --- internal/home/service_linux.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/internal/home/service_linux.go b/internal/home/service_linux.go index f27b7717..c885529b 100644 --- a/internal/home/service_linux.go +++ b/internal/home/service_linux.go @@ -9,7 +9,14 @@ import ( ) func chooseSystem() { - if sys := service.ChosenSystem(); sys.String() == "unix-systemv" { + sys := service.ChosenSystem() + // By default, package service uses the SysV system if it cannot detect + // anything other, but the update-rc.d fix should not be applied on OpenWrt, + // so exclude it explicitly. + // + // See https://github.com/AdguardTeam/AdGuardHome/issues/4480 and + // https://github.com/AdguardTeam/AdGuardHome/issues/4677. + if sys.String() == "unix-systemv" && !aghos.IsOpenWrt() { service.ChooseSystem(sysvSystem{System: sys}) } }