|
1080 | 1080 |
|
1081 | 1081 | - name: Print uname for each host |
1082 | 1082 | tags: ["oscheck", "fstests", "run_tests"] |
1083 | | - ansible.builtin.debug: var=ansible_kernel |
| 1083 | + ansible.builtin.debug: |
| 1084 | + var: ansible_kernel |
1084 | 1085 | - name: Clean up our localhost results/last-run directory |
1085 | | - ansible.builtin.file: path="{{ fstests_results_target }}/" state=absent |
| 1086 | + ansible.builtin.file: |
| 1087 | + path: "{{ fstests_results_target }}/" |
| 1088 | + state: absent |
1086 | 1089 | delegate_to: localhost |
1087 | 1090 | run_once: true |
1088 | 1091 | tags: ["oscheck", "fstests", "copy_results", "clean_local_results"] |
1089 | 1092 |
|
1090 | 1093 | - name: Create empty last-run directory |
1091 | | - ansible.builtin.file: path="{{ fstests_results_target }}/" state=directory |
| 1094 | + ansible.builtin.file: |
| 1095 | + path: "{{ fstests_results_target }}/" |
| 1096 | + state: directory |
1092 | 1097 | delegate_to: localhost |
1093 | 1098 | run_once: true |
1094 | 1099 | tags: ["oscheck", "fstests", "copy_results", "clean_local_results"] |
|
1134 | 1139 | - devconfig_enable_systemd_journal_remote|bool |
1135 | 1140 |
|
1136 | 1141 | - name: Hint to watchdog tests are about to kick off |
1137 | | - ansible.builtin.file: path="{{ fstests_workflow_dir }}/.begin" state=touch |
| 1142 | + ansible.builtin.file: |
| 1143 | + path: "{{ fstests_workflow_dir }}/.begin" |
| 1144 | + state: touch |
1138 | 1145 | delegate_to: localhost |
1139 | 1146 | tags: ["oscheck", "fstests", "run_tests"] |
1140 | 1147 | when: |
|
1296 | 1303 | tags: ["oscheck", "fstests", "run_tests", "monitoring", "monitor_collect"] |
1297 | 1304 |
|
1298 | 1305 | - name: Remove watchdog hint that tests have started |
1299 | | - ansible.builtin.file: path="{{ fstests_workflow_dir }}/.begin" state=absent |
| 1306 | + ansible.builtin.file: |
| 1307 | + path: "{{ fstests_workflow_dir }}/.begin" |
| 1308 | + state: absent |
1300 | 1309 | delegate_to: localhost |
1301 | 1310 | tags: ["oscheck", "fstests", "run_tests"] |
1302 | 1311 | when: |
|
1604 | 1613 | run_once: true |
1605 | 1614 |
|
1606 | 1615 | - name: Get stat of new files not yet committed, ie, new expunge files |
1607 | | - ansible.builtin.stat: path="{{ fstests_results_target }}/new_expunge_files.txt" |
| 1616 | + ansible.builtin.stat: |
| 1617 | + path: "{{ fstests_results_target }}/new_expunge_files.txt" |
1608 | 1618 | delegate_to: localhost |
1609 | 1619 | register: new_expunge_files_stat |
1610 | 1620 | run_once: true |
|
0 commit comments