summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/set_fact/nowarn_clean_facts.yml
blob: 74f908d04791de4551301767ea0aa50988b680de (plain)
1
2
3
4
5
6
7
8
9
10
- 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'"
    - name: set ssh jump host args (FQCN)
      ansible.builtin.set_fact:
        ansible_ssh_common_args: "-o ProxyCommand='ssh -W %h:%p -q root@localhost'"