From 4caf460b5f3b949ea240b31c7ed8c30526e7836b Mon Sep 17 00:00:00 2001 From: Will Szumski Date: Fri, 12 Jun 2020 13:53:49 +0100 Subject: [PATCH] Remove python 2 cleanup This is no longer necessary since the previous release, ussuri, supports python 3 only. Change-Id: I300dfdbc0f51d89c585bcefce4e4be40c2b85bda --- ansible/roles/kolla-ansible/tasks/install.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/ansible/roles/kolla-ansible/tasks/install.yml b/ansible/roles/kolla-ansible/tasks/install.yml index ca710fdbe..0af412f63 100644 --- a/ansible/roles/kolla-ansible/tasks/install.yml +++ b/ansible/roles/kolla-ansible/tasks/install.yml @@ -43,22 +43,6 @@ become: True when: kolla_ansible_venv is not none -# TODO(mgoddard): Remove this block when the previous release does not support -# Python 2. -- block: - - name: Check if virtualenv is python 2 - stat: - path: "{{ kolla_ansible_venv }}/bin/python2" - register: stat_result - - - name: Ensure python2 virtualenv is absent - file: - path: "{{ kolla_ansible_venv }}" - state: absent - when: stat_result.stat.exists - when: - - kolla_ansible_venv is not none - - name: Ensure the latest version of pip is installed pip: name: "{{ item.name }}"