9 lines
180 B
YAML
9 lines
180 B
YAML
---
|
|
# prepare gentoo iso to setup gentoo
|
|
|
|
- name: "Check if remote had network connection"
|
|
shell: "ping -c 3 www.google.fr"
|
|
register: ping_res
|
|
failed_when: ping_res.rc != 0
|
|
|