Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias K <6317548+theCalcaholic@users.noreply.github.com>2022-07-17 21:25:35 +0300
committerTobias K <6317548+theCalcaholic@users.noreply.github.com>2022-07-17 21:25:35 +0300
commit9a2e631e2b7d0c00f939dcd0a044d1a166d8800e (patch)
tree043c33ef100c5c777d2f47c978ccb400f8b63103 /bin/ncp/NETWORKING/dnsmasq.sh
parent82beb6eeaf7b1c1b1e2cbed4ebaf733328fcaf7b (diff)
dnsmasq.sh: Fix RPI build
Diffstat (limited to 'bin/ncp/NETWORKING/dnsmasq.sh')
-rw-r--r--bin/ncp/NETWORKING/dnsmasq.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ncp/NETWORKING/dnsmasq.sh b/bin/ncp/NETWORKING/dnsmasq.sh
index 058e4dcd..c778050a 100644
--- a/bin/ncp/NETWORKING/dnsmasq.sh
+++ b/bin/ncp/NETWORKING/dnsmasq.sh
@@ -16,7 +16,7 @@ install()
apt-get install --no-install-recommends -y dnsmasq
rc=0
service dnsmasq status > /dev/null 2>&1 || rc=$?
- ! is_docker && [[ $rc -eq 3 ]] && {
+ ! is_docker && [[ $rc -eq 3 ]] && [[ "$INIT_SYSTEM" != "chroot" ]] && {
echo "Applying workaround for dnsmasq bug (compare issue #1446)"
service systemd-resolved stop || true
service dnsmasq start