Quellcode durchsuchen

Unmask services

Unmasking etcd is is important when switching from containerized installs to
RPM installs
Brenton Leanhardt vor 9 Jahren
Ursprung
Commit
17f2e835e3
1 geänderte Dateien mit 8 neuen und 0 gelöschten Zeilen
  1. 8 0
      playbooks/adhoc/uninstall.yml

+ 8 - 0
playbooks/adhoc/uninstall.yml

@@ -53,6 +53,14 @@
         - pcsd
       failed_when: false
 
+    - name: unmask services
+      command: systemctl unmask "{{ item }}"
+      changed_when: False
+      failed_when: False
+      with_items:
+        - etcd
+        - firewalld
+
     - name: Stop additional atomic services
       service: name={{ item }} state=stopped
       when: is_containerized | bool