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/local/cwd_preserved.yml

24 lines
540 B
YAML

# Current working directory should be that of WorkerProcess -- which is the
# same directory as the currently executing playbook, i.e. integration/local/
#
# https://github.com/ansible/ansible/issues/14489
- name: integration/local/cwd_preserved.yml
hosts: test-targets
tasks:
- connection: local
command: pwd
register: pwd
- connection: local
stat:
path: "{{pwd.stdout}}/cwd_preserved.yml"
register: stat
- assert:
that: stat.stat.exists
fail_msg: stat={{stat}}
tags:
- cwd_prseserved