Skip to content
Commits on Source (4)
samba (2:4.11.0+dfsg-8) unstable; urgency=medium
* d/gbp.conf: sign-tags = True
* Do not check smb.conf with testparm when server role=active directory domain
controller (Closes: #931734)
* Force one job during configure step with -j 1 (Closes: #941467).
Not setting -j leads to default which is number of cpus
-- Mathieu Parent <sathieu@debian.org> Thu, 03 Oct 2019 07:52:39 +0200
samba (2:4.11.0+dfsg-7) unstable; urgency=medium
* Always evaluate WAF_NO_PARALLEL to ensure correct value (Closes: #941467)
......
[DEFAULT]
sign-tags = True
pristine-tar = True
upstream-branch = upstream_4.11
# don't hardcode the debian branch
......
......@@ -25,7 +25,7 @@ export PYSHORT=python3
export PYTHON=$(shell which $(PYSHORT))
export PYTHON_CONFIG="$(PYTHON)-config"
WAF := $(PYTHON) ./buildtools/bin/waf -v
WAF_NO_PARALLEL := $(WAF)
WAF_NO_PARALLEL := $(WAF) -j 1
# wrapper around cups-config, to work around #726726
export PATH:=$(CURDIR)/debian/bin:$(PATH)
......
......@@ -2,15 +2,15 @@
set -e
echo "Checking smb.conf with testparm"
testparm -d1 --suppress-prompt > /dev/null
echo "Done"
SERVER_ROLE=`samba-tool testparm --parameter-name="server role" 2>/dev/null | tail -1`
if [ "$SERVER_ROLE" = "active directory domain controller" ]; then
echo "Checking smb.conf with samba-tool"
samba-tool testparm -d1 --suppress-prompt > /dev/null
echo "Done"
else
echo "Checking smb.conf with testparm"
testparm -d1 --suppress-prompt > /dev/null
echo "Done"
fi
#DEBHELPER#