Browse Source

Merge pull request #1848 from detiber/stat

use stat module instead of shell module and ls to check for rpm-ostree
Andrew Butcher 9 years ago
parent
commit
cb0a480826
1 changed files with 7 additions and 9 deletions
  1. 7 9
      roles/openshift_facts/tasks/main.yml

+ 7 - 9
roles/openshift_facts/tasks/main.yml

@@ -5,15 +5,13 @@
   when: ansible_version.full | version_compare('1.9.4', 'lt') or ansible_version.full | version_compare('2.0', 'ge')
 
 - name: Detecting Operating System
-  shell: ls /run/ostree-booted
-  ignore_errors: yes
-  failed_when: false
-  changed_when: false
-  register: ostree_output
+  stat:
+    path: /run/ostree-booted
+  register: ostree_booted
 
 # Locally setup containerized facts for now
 - set_fact:
-    l_is_atomic: "{{ ostree_output.rc == 0 }}"
+    l_is_atomic: "{{ ostree_booted.stat.exists }}"
 - set_fact:
     l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
 
@@ -44,8 +42,8 @@
       https_proxy: "{{ openshift_https_proxy | default(None) }}"
       no_proxy: "{{ openshift_no_proxy | default(None) }}"
       generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
-      no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config'] 
-                                                   | union(groups['oo_masters_to_config']) 
-                                                   | union(groups['oo_etcd_to_config'] | default([]))) 
+      no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
+                                                   | union(groups['oo_masters_to_config'])
+                                                   | union(groups['oo_etcd_to_config'] | default([])))
                                                | oo_collect('openshift.common.hostname') | default([]) | join (',')
                                                }}"