Do not use deprecated local_action

This commit is contained in:
Wojciech Kozlowski 2022-12-28 19:34:54 +01:00
parent c9a5b2e9cc
commit 61c63ae729

View File

@ -8,8 +8,8 @@
- block:
- name: "identify logcheck ignore files"
local_action:
module: "ansible.builtin.stat"
delegate_to: "localhost"
ansible.builtin.stat:
path: "{{ system_base_logs_ignore_dir }}/{{ item }}"
register: system_base_logs_ignore_files_stat
loop: "{{ [ansible_hostname, 'all'] | union(group_names) }}"