From 72d0d54827793f554a9fa33b2043240c71a4edf9 Mon Sep 17 00:00:00 2001 From: Logan Nichols Date: Fri, 12 Apr 2024 13:43:11 -0500 Subject: [PATCH] Remove deprecated --use-community-ansible from Dockerfile Support for `--use-community-ansible` and `--use-2q-ansible` was removed in [v23.30](https://github.com/EnterpriseDB/tpa/pull/156/files#diff-0d8e64daf3fcee153ab1a24efadd67f716b4ea8172183990ccf1488d6dac0545L287-L293) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e434f502..fd9fe6bf8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ RUN apt-get -y update && \ ln -sf ${TPA_DIR}/bin/tpaexec /usr/local/bin && \ mkdir /opt/2ndQuadrant/ && \ ln -sf ${TPA_DIR} /opt/2ndQuadrant/TPA && \ - tpaexec setup --use-community-ansible && \ + tpaexec setup && \ tpaexec selftest && \ (cd "${TPA_DIR}" && git describe --tags >VERSION) && \ \