Fix name[casing] ansible-lint issues

fix 1900 failures of the following case issue:

`name[casing]: All names should start with an uppercase letter.`

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
Ryan Lercho 2025-01-14 20:18:57 +10:00
parent 01030eaf26
commit 691adee6ee
299 changed files with 1935 additions and 1935 deletions

View file

@ -11,7 +11,7 @@
# - policy_name (str): the name of the custom SELinux policy to build and
# install.
- name: copy over our custom selinux module for {{ policy_name }}
- name: Copy over our custom selinux module for {{ policy_name }}
copy: src="{{ policy_file }}" dest="/usr/local/share/{{ policy_name }}.te"
register: selinux_module
tags:
@ -32,7 +32,7 @@
- selinux
- selinux/module
- name: install our custom selinux module
- name: Install our custom selinux module
command: semodule -i /usr/local/share/{{ policy_name }}.pp
when: selinux_module is changed
tags: