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.
21 lines
588 B
YAML
21 lines
588 B
YAML
6 years ago
|
# #591: process CWD is not reset before start of module execution. This is
|
||
|
# usually fine, except for modules importing setuptools early, which attempts
|
||
|
# to call getcwd() before AnsibleModule has had a chance to clean up the
|
||
|
# process environment.
|
||
|
|
||
|
- hosts: test-targets
|
||
|
tasks:
|
||
|
- meta: end_play
|
||
|
when: not is_mitogen
|
||
|
|
||
|
- custom_python_run_script:
|
||
|
script: |
|
||
|
import os
|
||
|
os.chdir(module.tmpdir)
|
||
|
|
||
|
# Will crash if process has a nonexistent CWD.
|
||
|
- custom_python_os_getcwd:
|
||
|
script: |
|
||
|
import os
|
||
|
self._connection.get_chain().call(os.getcwd)
|