From 42298f890e9f890a5e507b828ddc573a8ed4cba9 Mon Sep 17 00:00:00 2001 From: John R Barker Date: Mon, 31 Jul 2017 07:20:19 +0100 Subject: [PATCH] Install Python (#27476) --- test/integration/targets/prepare_ovs_tests/tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/targets/prepare_ovs_tests/tasks/main.yml b/test/integration/targets/prepare_ovs_tests/tasks/main.yml index 9674ab0b336..d73b79effa0 100644 --- a/test/integration/targets/prepare_ovs_tests/tasks/main.yml +++ b/test/integration/targets/prepare_ovs_tests/tasks/main.yml @@ -1,5 +1,9 @@ --- +- name: Install python + raw: + test -e /usr/bin/python || apt-get -y update && apt-get install -y python-minimal + # network-integration test are ran with gather_facts: no # We need to explicitly call setup so ansible_distribution is set