diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-02-16 20:28:16 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-02-16 20:28:31 -0500 |
commit | 1a4a08e21ad29f5db4390f21362d23b01928fa02 (patch) | |
tree | 34365f16c774c08ea04d6acccb3d872008da3f49 /roles/lib_utils | |
parent | 43659a5b19508336efa6901c7a38a6fa39a5a144 (diff) | |
download | openshift-1a4a08e21ad29f5db4390f21362d23b01928fa02.tar.gz openshift-1a4a08e21ad29f5db4390f21362d23b01928fa02.tar.bz2 openshift-1a4a08e21ad29f5db4390f21362d23b01928fa02.tar.xz openshift-1a4a08e21ad29f5db4390f21362d23b01928fa02.zip |
Don't attempt to install python-ruamel-yaml on atomic
Diffstat (limited to 'roles/lib_utils')
-rw-r--r-- | roles/lib_utils/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/lib_utils/tasks/main.yml b/roles/lib_utils/tasks/main.yml index 8a350da88..32ab9e0c6 100644 --- a/roles/lib_utils/tasks/main.yml +++ b/roles/lib_utils/tasks/main.yml @@ -1,5 +1,11 @@ --- +- name: lib_utils detect ostree + stat: + path: /run/ostree-booted + register: ostree_booted + - name: lib_utils ensure python-ruamel-yaml package is on target package: name: python-ruamel-yaml state: present + when: not ostree_booted.stat.exists |