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:
parent
f3517ab537
commit
62952df107
167 changed files with 380 additions and 381 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue