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.
mitogen/tests/ansible/integration/ssh/config.yml

23 lines
501 B
YAML

# issue #334: test expanduser() on key file during config generation.
- name: integration/ssh/config.yml
hosts: test-targets
connection: ssh
vars:
ansible_private_key_file: ~/fakekey
tasks:
- include_tasks: ../_mitogen_only.yml
- mitogen_get_stack:
register: out
- assert:
that: |
out.result[0].kwargs.identity_file == (
lookup('env', 'HOME') + '/fakekey'
)
fail_msg: out={{out}}
tags:
- config
- mitogen_only