add-ping-package (#9284)

This commit is contained in:
Kay Yan 2022-09-22 14:55:05 +08:00 committed by GitHub
parent 68dac4e181
commit 5d3326b93f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,6 +100,20 @@
- not ignore_assert_errors
- ip is defined
- name: Ensure ping package
package:
name: >-
{%- if ansible_os_family in ['RedHat', 'Suse'] -%}
iputils
{%- else -%}
iputils-ping
{%- endif -%}
state: present
when:
- access_ip is defined
- not ignore_assert_errors
- ping_access_ip
- name: Stop if access_ip is not pingable
command: ping -c1 {{ access_ip }}
when: