Fix the final 50ish casing linting errors

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
Ryan Lerch
2025-01-22 07:30:55 +10:00
parent e84914aa34
commit dbdb0d9824
49 changed files with 140 additions and 140 deletions

View File

@@ -5,7 +5,7 @@
vars:
myhosts: "cloud-noc01.fedorainfracloud.org"
- name: make cloud noc hardware
- name: Make cloud noc hardware
hosts: cloud-noc01.fedorainfracloud.org
user: root
gather_facts: true
@@ -31,7 +31,7 @@
tasks:
- import_tasks: "{{ tasks_path }}/motd.yml"
- name: check if ntpd port is already known by selinux
- name: Check if ntpd port is already known by selinux
ansible.builtin.shell: semanage port -l | grep ntp
register: ntp_selinux_port
check_mode: no
@@ -41,7 +41,7 @@
- config
- selinux
- name: allow alternate ntpd port
- name: Allow alternate ntpd port
ansible.builtin.command: semanage port -a -t ntp_port_t -p tcp 124
when: '"124" not in ntp_selinux_port'
failed_when: false
@@ -49,7 +49,7 @@
- config
- selinux
- name: allow alternate ntpd port
- name: Allow alternate ntpd port
ansible.builtin.command: semanage port -a -t ntp_port_t -p udp 124
when: '"124" not in ntp_selinux_port'
failed_when: false

View File

@@ -5,7 +5,7 @@
vars:
myhosts: "noc-cc01.rdu-cc.fedoraproject.org"
- name: make cloud noc hardware
- name: Make cloud noc hardware
hosts: noc-cc01.rdu-cc.fedoraproject.org
user: root
gather_facts: true
@@ -33,7 +33,7 @@
tasks:
- import_tasks: "{{ tasks_path }}/motd.yml"
- name: install some packages which arent in playbooks
- name: Install some packages which arent in playbooks
ansible.builtin.package:
state: present
name:
@@ -41,7 +41,7 @@
- tcpdump
- dhcp-server
- name: check if ntpd port is already known by selinux
- name: Check if ntpd port is already known by selinux
ansible.builtin.shell: semanage port -l | grep ntp
register: ntp_selinux_port
check_mode: no
@@ -51,7 +51,7 @@
- config
- selinux
- name: allow alternate ntpd port
- name: Allow alternate ntpd port
ansible.builtin.command: semanage port -a -t ntp_port_t -p tcp 124
when: '"124" not in ntp_selinux_port'
failed_when: false
@@ -59,7 +59,7 @@
- config
- selinux
- name: allow alternate ntpd port
- name: Allow alternate ntpd port
ansible.builtin.command: semanage port -a -t ntp_port_t -p udp 124
when: '"124" not in ntp_selinux_port'
failed_when: false