From ed7928815360648c1451f54dabd1de0ae0179e4c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 16 May 2020 16:48:05 +0200 Subject: [PATCH] revert to last working state --- tasks/install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index c419bdb..0e3148c 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,5 +1,5 @@ --- -- block: +- block: - name: Install dependencies package: name: "{{ item }}" @@ -15,7 +15,7 @@ - name: Install python packages pip: name: "{{ item.name }}" - executable: "{{ item.exec | default('/usr/bin/pip' + ansible_python.version.major | string) }}" + executable: "{{ item.exec | default('/usr/bin/pip3') }}" state: present loop: "{{ dockerengine_packages_python }}" loop_control: