Przeglądaj źródła

Bug fixes for the uninstall playbook

1) is_atomic wasn't being evaluated properly
2) the way we were detecting it was resulting in a confusion error message
   being displayed to the user in the case of RHEL 7 Server
Brenton Leanhardt 9 lat temu
rodzic
commit
e0bd8bfa45
1 zmienionych plików z 3 dodań i 2 usunięć
  1. 3 2
      playbooks/adhoc/uninstall.yml

+ 3 - 2
playbooks/adhoc/uninstall.yml

@@ -16,10 +16,11 @@
     - name: Detecting Operating System
       shell: ls /run/ostree-booted
       ignore_errors: yes
+      failed_when: false
       register: ostree_output
 
     - set_fact:
-        is_atomic: ostree_output.rc == 0
+        is_atomic: "{{ ostree_output.rc == 0 }}"
 
     - service: name={{ item }} state=stopped
       with_items:
@@ -41,7 +42,7 @@
         - origin-node
 
     - yum: name={{ item }} state=absent
-      when: not is_atomic
+      when: not is_atomic | bool
       with_items:
         - atomic-enterprise
         - atomic-enterprise-master