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

@ -1,6 +1,6 @@
---
# install mod_wsgi
- name: install mod_wsgi
- name: Install mod_wsgi
package:
name: mod_wsgi
state: present
@ -8,7 +8,7 @@
- packages
when: ansible_distribution_major_version|int < 8 and ansible_distribution == 'RedHat'
- name: install mod_wsgi
- name: Install mod_wsgi
package:
name: python3-mod_wsgi
state: present
@ -16,7 +16,7 @@
- packages
when: ansible_distribution_major_version|int >= 8 and ansible_distribution == 'RedHat'
- name: install mod_wsgi
- name: Install mod_wsgi
package:
name: mod_wsgi
state: present
@ -24,7 +24,7 @@
- packages
when: ansible_distribution == 'Fedora'
- name: wsgi.conf
- name: Wsgi.conf
copy: src="wsgi.conf" dest=/etc/httpd/conf.d/wsgi.conf
notify:
- restart apache