From 71e7eca89d3bc22cb8e401754f36d2fd6a848d7e Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 21 Aug 2017 09:16:23 +0200 Subject: [PATCH] build: prevent start of configd during build runs --- build/common.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/common.sh b/build/common.sh index 43a0cde..40157c0 100644 --- a/build/common.sh +++ b/build/common.sh @@ -376,6 +376,9 @@ setup_chroot() cp /etc/resolv.conf ${1}/etc mount -t devfs devfs ${1}/dev chroot ${1} /bin/sh /etc/rc.d/ldconfig start + + # prevent the start of configd in build environments + echo 'configd_enable="NO"' >> ${1}/etc/rc.conf.local } build_marker()