Infra: Ansible yaml lint cleanup
[csit.git] / fdio.infra.ansible / roles / cleanup / tasks / kill_containers.yaml
index 25fd48e..750572f 100644 (file)
@@ -3,40 +3,40 @@
 
 - name: Kill Docker Containers
   block:
-  - name: Kill Container - Get Running Docker Containers
-    shell: "docker ps -aq"
-    register: running_containers
-    changed_when: no
-    tags:
-      - kill-containers
+    - name: Kill Container - Get Running Docker Containers
+      shell: "docker ps -aq"
+      register: running_containers
+      changed_when: false
+      tags:
+        - kill-containers
 
-  - name: Kill Container - Remove All Docker Containers
-    shell: "docker rm --force {{ item }}"
-    with_items: "{{ running_containers.stdout_lines }}"
-    tags:
-      - kill-containers
+    - name: Kill Container - Remove All Docker Containers
+      shell: "docker rm --force {{ item }}"
+      with_items: "{{ running_containers.stdout_lines }}"
+      tags:
+        - kill-containers
 
   rescue:
-  - name: Restart Docker Daemon
-    systemd:
-      name: "docker"
-      state: "restarted"
+    - name: Restart Docker Daemon
+      systemd:
+        name: "docker"
+        state: "restarted"
 
 - name: Kill LXC Containers
   block:
-  - name: Kill Container - Get Running LXC Containers
-    shell: "lxc-ls"
-    register: running_containers
-    changed_when: no
-    tags:
-      - kill-containers
+    - name: Kill Container - Get Running LXC Containers
+      shell: "lxc-ls"
+      register: running_containers
+      changed_when: false
+      tags:
+        - kill-containers
 
-  - name: Kill Container - Remove All LXC Containers
-    shell: "lxc-destroy --force -n {{ item }}"
-    with_items: "{{ running_containers.stdout_lines }}"
-    tags:
-      - kill-containers
+    - name: Kill Container - Remove All LXC Containers
+      shell: "lxc-destroy --force -n {{ item }}"
+      with_items: "{{ running_containers.stdout_lines }}"
+      tags:
+        - kill-containers
 
   rescue:
-  - fail:
-      msg: "Kill LXC containers failed!"
\ No newline at end of file
+    - fail:
+        msg: "Kill LXC containers failed!"