diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-02-03 08:56:24 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-02-03 16:36:10 -0500 |
commit | ce72b251661d0ea83107036ce6d18b40a331b99c (patch) | |
tree | 032a18ddc39c1813839f77ea0bb3bee4804e5486 /roles/lib_openshift | |
parent | 98d6f514256471134f80c51a737b47bf21810bd9 (diff) | |
download | openshift-ce72b251661d0ea83107036ce6d18b40a331b99c.tar.gz openshift-ce72b251661d0ea83107036ce6d18b40a331b99c.tar.bz2 openshift-ce72b251661d0ea83107036ce6d18b40a331b99c.tar.xz openshift-ce72b251661d0ea83107036ce6d18b40a331b99c.zip |
Ensure python2-ruamel-yaml is installed
need to revisit this, currently python2-ruamel-yaml doesn't provide
'python-ruamel-yaml'. It probably should and that should be what we're
installing.
Diffstat (limited to 'roles/lib_openshift')
-rw-r--r-- | roles/lib_openshift/tasks/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/lib_openshift/tasks/main.yml b/roles/lib_openshift/tasks/main.yml new file mode 100644 index 000000000..2980c8a8d --- /dev/null +++ b/roles/lib_openshift/tasks/main.yml @@ -0,0 +1,5 @@ +--- +- name: lib_openshift ensure python-ruamel-yaml package is on target + package: + name: python-ruamel-yaml + state: present |