Browse Source

Merge pull request #9209 from jkroepke/fix_passlib

Fixes #5174: Remove unnecessary passlib check
Michael Gugino 6 years ago
parent
commit
9a5be5e133
1 changed files with 0 additions and 10 deletions
  1. 0 10
      roles/openshift_metrics/tasks/main.yaml

+ 0 - 10
roles/openshift_metrics/tasks/main.yaml

@@ -1,14 +1,4 @@
 ---
-- local_action: shell python -c 'import passlib' 2>/dev/null || echo not installed
-  register: passlib_result
-  become: false
-
-- name: Check that python-passlib is available on the control host
-  assert:
-    that:
-      - "'not installed' not in passlib_result.stdout"
-    msg: "python-passlib rpm must be installed on control host"
-
 - name: Create temp directory for doing work in on target
   command: mktemp -td openshift-metrics-ansible-XXXXXX
   register: mktemp