ansible-collection-kolla/roles/baremetal/tasks/pre-install.yml
Mark Goddard 6236e557fd baremetal: Refactor /etc/hosts configuration into a separate role
Change-Id: If65657860fc607b92dca62337fc24dd7b5d21589
2023-02-22 12:26:57 +00:00

10 lines
249 B
YAML

---
- name: Ensure unprivileged users can use ping
become: true
sysctl:
name: net.ipv4.ping_group_range
value: '0 2147483647'
state: present
sysctl_file: "{{ kolla_sysctl_conf_path }}"
when: ansible_facts.os_family == 'RedHat'