2016-07-02 02:59:06 +02:00
|
|
|
- hosts: localhost
|
2016-07-01 23:52:45 +02:00
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
# make sure non-JSON data before module output is ignored
|
|
|
|
- name: async ping with invalid locale via ssh
|
|
|
|
ping:
|
2016-08-02 22:30:26 +02:00
|
|
|
async: 10
|
2016-07-01 23:52:45 +02:00
|
|
|
poll: 1
|
|
|
|
register: result
|
|
|
|
- debug: var=result
|