mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-02-02 20:59:02 +08:00
Fix the final 50ish casing linting errors
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user