From add9fda2779a8f37c121087387de1cec7233b273 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Thu, 1 Dec 2016 18:09:56 +0000 Subject: [PATCH] Remove pip_install as meta-dependency The repo_server role does no pip installations - they're all done in the repo_build role. This removes the unnecessary dependency. Note that the httplib2 pip install task is removed as Ansible 2.x no longer requires it. Related-Bug: #1633105 Change-Id: I4a2ff6c6e5cd40d87d4218f63c09e96da82da1aa --- meta/main.yml | 1 - tests/test-repo-server-functional.yml | 3 --- 2 files changed, 4 deletions(-) diff --git a/meta/main.yml b/meta/main.yml index 9e48fe4..2175e02 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -36,4 +36,3 @@ dependencies: - role: apt_package_pinning when: - ansible_pkg_mgr == 'apt' - - pip_install diff --git a/tests/test-repo-server-functional.yml b/tests/test-repo-server-functional.yml index 5735543..cfc4aac 100644 --- a/tests/test-repo-server-functional.yml +++ b/tests/test-repo-server-functional.yml @@ -17,9 +17,6 @@ hosts: repo_all user: root tasks: - - name: Install httplib2 so we can use the uri module - pip: - name: httplib2 - name: Check nginx is running shell: "ps auxf | grep nginx" register: ps_auxf_nginx