ansiblelint fixes-- fqcn[action-core] - command to ansible.builtin.command
Replaces many references to command: with ansible.builtin.command Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
parent
6a3816dfdc
commit
462176464b
145 changed files with 366 additions and 366 deletions
|
@ -20,7 +20,7 @@
|
|||
- httpd/website
|
||||
|
||||
- name: Check the selinux context of webdir
|
||||
command: matchpathcon /srv/web
|
||||
ansible.builtin.command: matchpathcon /srv/web
|
||||
register: webdir
|
||||
check_mode: no
|
||||
changed_when: "1 != 1"
|
||||
|
@ -31,7 +31,7 @@
|
|||
- httpd/website
|
||||
|
||||
- name: /srv/web file contexts
|
||||
command: semanage fcontext -a -t httpd_sys_content_t "/srv/web(/.*)?"
|
||||
ansible.builtin.command: semanage fcontext -a -t httpd_sys_content_t "/srv/web(/.*)?"
|
||||
when: webdir.stdout.find('httpd_sys_content_t') == -1
|
||||
tags:
|
||||
- config
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue