summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-02-16 20:28:16 -0500
committerScott Dodson <sdodson@redhat.com>2017-02-16 20:28:31 -0500
commit1a4a08e21ad29f5db4390f21362d23b01928fa02 (patch)
tree34365f16c774c08ea04d6acccb3d872008da3f49 /roles
parent43659a5b19508336efa6901c7a38a6fa39a5a144 (diff)
downloadopenshift-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')
-rw-r--r--roles/lib_openshift/tasks/main.yml6
-rw-r--r--roles/lib_utils/tasks/main.yml6
2 files changed, 12 insertions, 0 deletions
diff --git a/roles/lib_openshift/tasks/main.yml b/roles/lib_openshift/tasks/main.yml
index 2980c8a8d..77366c65e 100644
--- a/roles/lib_openshift/tasks/main.yml
+++ b/roles/lib_openshift/tasks/main.yml
@@ -1,5 +1,11 @@
---
+- name: lib_openshift detect ostree
+ stat:
+ path: /run/ostree-booted
+ register: ostree_booted
+
- name: lib_openshift ensure python-ruamel-yaml package is on target
package:
name: python-ruamel-yaml
state: present
+ when: not ostree_booted.stat.exists
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