mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user