You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
985 B
YAML
25 lines
985 B
YAML
- name: integration/ssh/templated_by_task_keyword.yml
|
|
hosts: tt_targets_bare
|
|
gather_facts: false
|
|
# FIXME Resetting the connection shouldn't require credentials
|
|
# https://github.com/mitogen-hq/mitogen/issues/1132
|
|
remote_user: "{{ 'mitogen__has_sudo_nopw' | trim }}"
|
|
vars:
|
|
ansible_password: has_sudo_nopw_password
|
|
ansible_port: "{{ hostvars[groups['test-targets'][0]].ansible_port | default(22) }}"
|
|
tasks:
|
|
- name: Reset connection to target that will be delegate_to
|
|
meta: reset_connection
|
|
|
|
- name: Test connection template by task keywords, with delegate_to
|
|
hosts: test-targets[0]
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Templated by task keywords, with delegate_to
|
|
delegate_to: "{{ groups.tt_targets_bare[0] }}"
|
|
remote_user: "{{ 'mitogen__has_sudo_nopw' | trim }}"
|
|
vars:
|
|
ansible_password: has_sudo_nopw_password
|
|
ansible_port: "{{ hostvars[groups['test-targets'][0]].ansible_port | default(22) }}"
|
|
ping:
|