2018-04-06 01:57:34 +02:00
|
|
|
- name: Test no warnings ref "http://github.com/ansible/ansible/issues/37535"
|
|
|
|
hosts: testhost
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- name: set ssh jump host args
|
|
|
|
set_fact:
|
|
|
|
ansible_ssh_common_args: "-o ProxyCommand='ssh -W %h:%p -q root@localhost'"
|
2020-11-03 14:51:31 +01:00
|
|
|
- name: set ssh jump host args (FQCN)
|
|
|
|
ansible.builtin.set_fact:
|
|
|
|
ansible_ssh_common_args: "-o ProxyCommand='ssh -W %h:%p -q root@localhost'"
|