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.
19 lines
534 B
YAML
19 lines
534 B
YAML
#
|
|
# The ansible.cfg remote_tmp setting should be copied to the target and used
|
|
# when generating temporary paths created by the runner.py code executing
|
|
# remotely.
|
|
#
|
|
- hosts: all
|
|
any_errors_fatal: true
|
|
gather_facts: true
|
|
tasks:
|
|
- name: integration/runner__remote_tmp.yml
|
|
bash_return_paths:
|
|
register: output
|
|
|
|
- assert:
|
|
that: output.argv0.startswith('%s/.ansible/mitogen-tests/' % ansible_user_dir)
|
|
|
|
- assert:
|
|
that: output.argv1.startswith('%s/.ansible/mitogen-tests/' % ansible_user_dir)
|