ansiblelint fixes-- fqcn[action-core] - file to ansible.builtin.file

Replaces many references to  file: with ansible.builtin.file

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
Ryan Lercho 2024-12-17 15:31:55 +10:00
parent f3517ab537
commit 62952df107
167 changed files with 380 additions and 381 deletions

View file

@ -3,14 +3,14 @@
## Create all the folder used/needed
- name: Create the easyfix folder
file: state=directory
ansible.builtin.file: state=directory
path=/srv/web/easyfix
owner=apache group=apache mode=0755
tags:
- easyfix
- name: Create the easyfix configuration folder
file: state=directory
ansible.builtin.file: state=directory
path=/etc/fedora-gather-easyfix/
owner=root group=root mode=0755
tags:

View file

@ -1,6 +1,6 @@
---
- name: Ensure dir for content exists
file: dest=/srv/web/gather-easyfix owner=root group=root mode=0755 state=directory
ansible.builtin.file: dest=/srv/web/gather-easyfix owner=root group=root mode=0755 state=directory
tags:
- easyfix
- easyfix/proxy