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

@ -474,11 +474,11 @@
register: selinux_module
- name: Compile and install our custom selinux module
command: /etc/nagios/selinux-load.sh
ansible.builtin.command: /etc/nagios/selinux-load.sh
when: selinux_module is changed
- name: /var/log/rabbitmq selinux file context
command: semanage fcontext -a -t var_log_t "/var/log/rabbitmq(/.*)?"
ansible.builtin.command: semanage fcontext -a -t var_log_t "/var/log/rabbitmq(/.*)?"
register: semanage_rabbit
changed_when: "'already defined' not in semanage_rabbit.stdout"
tags: