mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
hack/make/test-integration: disable firewalld integration
The daemon started by the test-integration script needs to run without firewalld integration to make sure that daemons started by networking tests will handle firewalld reload without any interference (i.e. without another daemon racing against them to recreate the iptables chains). Most tests are already running their own daemons, but the few that don't and need firewalld integration are updated to start their own. Signed-off-by: Albin Kerouanton <albinker@gmail.com>
This commit is contained in:
@@ -119,6 +119,14 @@ if [ -z "$DOCKER_TEST_HOST" ]; then
|
||||
(
|
||||
echo "Starting dockerd"
|
||||
[ -n "$TESTDEBUG" ] && set -x
|
||||
if [ -n "${FIREWALLD:-}" ] && [ "${DOCKER_FIREWALL_BACKEND:-}" == "iptables" ]; then
|
||||
# Networking integration tests start their own daemon to have fine control over the configuration of the
|
||||
# daemon-under-test. Two daemons running with firewalld integration enabled would race against each other
|
||||
# when the firewalld reload signal is dispatched, and would result in iptables disappearing unexpectedly
|
||||
# from the point of view of the daemon-under-test. So, disable firewalld integration on this daemon, as it's
|
||||
# only used to load frozen images.
|
||||
export DOCKER_TEST_NO_FIREWALLD="true"
|
||||
fi
|
||||
exec \
|
||||
${dockerd} --debug \
|
||||
--host "$DOCKER_HOST" \
|
||||
|
||||
Reference in New Issue
Block a user