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

View File

@@ -19,21 +19,21 @@
- selinux/module
- name: Build our custom selinux module
command: checkmodule -M -m -o /usr/local/share/{{ policy_name }}.mod /usr/local/share/{{ policy_name }}.te
ansible.builtin.command: checkmodule -M -m -o /usr/local/share/{{ policy_name }}.mod /usr/local/share/{{ policy_name }}.te
when: selinux_module is changed
tags:
- selinux
- selinux/module
- name: Compile our custom selinux module
command: semodule_package -o /usr/local/share/{{ policy_name }}.pp -m /usr/local/share/{{ policy_name }}.mod
ansible.builtin.command: semodule_package -o /usr/local/share/{{ policy_name }}.pp -m /usr/local/share/{{ policy_name }}.mod
when: selinux_module is changed
tags:
- selinux
- selinux/module
- name: Install our custom selinux module
command: semodule -i /usr/local/share/{{ policy_name }}.pp
ansible.builtin.command: semodule -i /usr/local/share/{{ policy_name }}.pp
when: selinux_module is changed
tags:
- selinux