Browse Source

Change etcd deamon name for atomic-host

  * Update playbooks/adhoc/uninstall.yml
  * Etcd run into a container on atomic-host and his name is etcd_container.
    We have to stop the container with the right name on atomic host
talset 9 years ago
parent
commit
f48bce9589
1 changed files with 7 additions and 0 deletions
  1. 7 0
      playbooks/adhoc/uninstall.yml

+ 7 - 0
playbooks/adhoc/uninstall.yml

@@ -53,6 +53,13 @@
         - pcsd
       failed_when: false
 
+    - name: Stop additional atomic services
+      service: name={{ item }} state=stopped
+      when: is_atomic | bool
+      with_items:
+        - etcd_container
+      failed_when: false
+
     - name: Remove packages
       action: "{{ ansible_pkg_mgr }} name={{ item }} state=absent"
       when: not is_atomic | bool