feat(infra): DPDK 23.03 compatibility matrix
[csit.git] / fdio.infra.ansible / roles / cleanup / tasks / sut.yaml
index d80a35b..8892699 100644 (file)
       tags:
         - kill-process
 
+    - name: Kill Processes - nohup
+      import_tasks: kill_process.yaml
+      vars:
+        process: "nohup"
+      tags:
+        - kill-process
+
+    - name: Kill Processes - vpp
+      import_tasks: kill_process.yaml
+      vars:
+        process: "vpp"
+      tags:
+        - kill-process
+
     - name: Kill Processes - vpp_echo
       import_tasks: kill_process.yaml
       vars:
@@ -39,7 +53,7 @@
         - kill-process
 
     - name: Find File Or Dir - Core Zip File
-      find:
+      ansible.builtin.find:
         paths: "/tmp/"
         patterns: "*tar.lzo.lrz.xz*"
       register: files_to_delete
@@ -47,7 +61,7 @@
         - remove-file-dir
 
     - name: Remove File Or Dir - Core Zip File
-      file:
+      ansible.builtin.file:
         path: "{{ item.path }}"
         state: absent
       with_items: "{{ files_to_delete.files }}"
@@ -55,7 +69,7 @@
         - remove-file-dir
 
     - name: Find File Or Dir - Core Dump File
-      find:
+      ansible.builtin.find:
         paths: "/tmp/"
         patterns: "*core*"
       register: files_to_delete
@@ -63,7 +77,7 @@
         - remove-file-dir
 
     - name: Remove File Or Dir - Core Dump File
-      file:
+      ansible.builtin.file:
         path: "{{ item.path }}"
         state: absent
       with_items: "{{ files_to_delete.files }}"