add-ping-package (#9284)
This commit is contained in:
parent
68dac4e181
commit
5d3326b93f
1 changed files with 14 additions and 0 deletions
|
@ -100,6 +100,20 @@
|
||||||
- not ignore_assert_errors
|
- not ignore_assert_errors
|
||||||
- ip is defined
|
- 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
|
- name: Stop if access_ip is not pingable
|
||||||
command: ping -c1 {{ access_ip }}
|
command: ping -c1 {{ access_ip }}
|
||||||
when:
|
when:
|
||||||
|
|
Loading…
Reference in a new issue