From fc30e584790d762e74e9714487f4b7a7e1259729 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Tue, 5 Oct 2021 22:14:02 +0200 Subject: [PATCH] python2 still needed for centos7 --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index f591019..88cc4f9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -115,7 +115,7 @@ steps: commands: - ansible-galaxy collection install community.general - ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check - - ansible-playbook -i tests/inventory tests/test-playbook.yml -e "ci_run=yes" --skip-tags "daemon" + - ansible-playbook -i tests/inventory tests/test-playbook.yml -e ansible_python_interpreter=/usr/bin/python2 -e "ci_run=yes" --skip-tags "daemon" depends_on: - "prepare_workspace"