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:
Ryan Lercho 2024-12-19 11:22:24 +10:00
parent 6a3816dfdc
commit 462176464b
145 changed files with 366 additions and 366 deletions

View file

@ -50,7 +50,7 @@
tags: cgit
- name: Check the selinux context of the repo list
command: matchpathcon /srv/git/pkgs-git-repos-list
ansible.builtin.command: matchpathcon /srv/git/pkgs-git-repos-list
register: gitlistcontext
check_mode: no
changed_when: false
@ -60,7 +60,7 @@
- selinux
- name: Set the SELinux policy for the repo list
command: semanage fcontext -a -t git_content_t "/srv/git/pkgs-git-repos-list"
ansible.builtin.command: semanage fcontext -a -t git_content_t "/srv/git/pkgs-git-repos-list"
when: gitlistcontext.stdout.find('git_content_t') == -1
tags:
- config