blob: ec370d7c7f205eef85c61c66c5954c9dd306f365 (
plain)
1
2
3
4
5
6
7
8
9
10
|
- hosts: testhost3
gather_facts: false
tasks:
# make sure non-JSON data before module output is ignored
- name: async ping with invalid locale via ssh
ping:
async: 3
poll: 1
register: result
- debug: var=result
|