diff options
author | Jan Chaloupka <jchaloup@redhat.com> | 2017-02-10 14:32:10 +0100 |
---|---|---|
committer | Jan Chaloupka <jchaloup@redhat.com> | 2017-02-10 14:32:10 +0100 |
commit | c95812da009b78b8b033e2e4aeaed4c992523c2f (patch) | |
tree | ddb770b0060da847449ed9575c08a1f255c65311 | |
parent | 9e92660ed86623385e48c4960f4db681d86a7a57 (diff) | |
download | openshift-c95812da009b78b8b033e2e4aeaed4c992523c2f.tar.gz openshift-c95812da009b78b8b033e2e4aeaed4c992523c2f.tar.bz2 openshift-c95812da009b78b8b033e2e4aeaed4c992523c2f.tar.xz openshift-c95812da009b78b8b033e2e4aeaed4c992523c2f.zip |
use the correct name for the ruamel-yaml python module
-rw-r--r-- | roles/lib_openshift/tasks/main.yml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/roles/lib_openshift/tasks/main.yml b/roles/lib_openshift/tasks/main.yml index 157cf8f7f..2980c8a8d 100644 --- a/roles/lib_openshift/tasks/main.yml +++ b/roles/lib_openshift/tasks/main.yml @@ -1,12 +1,5 @@ --- - name: lib_openshift ensure python-ruamel-yaml package is on target package: - name: "{{ item }}" + name: python-ruamel-yaml state: present - with_items: - - ruamel.yaml - - ruamel.yaml - - ruamel.yaml - - ruamel.yaml - - ruamel.yaml - - ruamel.yaml |