From 72779d4df48ee2903d1b7bb1b83f1eedbd5a16fa Mon Sep 17 00:00:00 2001
From: Mark Goddard <mark@stackhpc.com>
Date: Thu, 30 Jan 2020 14:13:57 +0000
Subject: [PATCH] Remove unused python path calculation from vmtp

Its use was removed in If801f54709114b931677adb605dffb75cfab25cd.

Change-Id: I577d74a5971dbdf7e4c8288d5742e8bd340680b0
---
 ansible/roles/vmtp/tasks/config.yml | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/ansible/roles/vmtp/tasks/config.yml b/ansible/roles/vmtp/tasks/config.yml
index 858fb717ce..bb0f358d3a 100644
--- a/ansible/roles/vmtp/tasks/config.yml
+++ b/ansible/roles/vmtp/tasks/config.yml
@@ -12,16 +12,6 @@
     - item.value.enabled | bool
   with_dict: "{{ vmtp_services }}"
 
-- name: Register binary python path
-  command: echo /usr/lib/python2.7/site-packages
-  register: python_path
-  when: vmtp_install_type == 'binary'
-
-- name: Register source python path
-  command: echo /var/lib/kolla/venv/lib/python2.7/site-packages
-  register: python_path
-  when: vmtp_install_type != 'binary'
-
 - name: Copying over configuration file for vmtp
   vars:
     service: "{{ vmtp_services['vmtp'] }}"