diff options
author | Jordan Borean <jborean93@gmail.com> | 2018-09-20 19:37:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 19:37:54 +1000 |
commit | 5c73d4f4bd4c067cd4d1d9f1adfe16090ece4b04 (patch) | |
tree | 339eb6d6b39e6bb33b76d83c60438efb9f6a7a99 /changelogs/fragments/async-dir.yaml | |
parent | 60979a96a93dac21fb6107519804d8fcd55bccf9 (diff) | |
download | ansible-5c73d4f4bd4c067cd4d1d9f1adfe16090ece4b04.tar.gz |
async: use async_dir for the async results file directory (#45461)
* win async: use async_dir for the async results file directory
* tried to unify POSIX and PowerShell async implementations of async_dir
* fix sanity issue
Diffstat (limited to 'changelogs/fragments/async-dir.yaml')
-rw-r--r-- | changelogs/fragments/async-dir.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/changelogs/fragments/async-dir.yaml b/changelogs/fragments/async-dir.yaml new file mode 100644 index 0000000000..07e3b8e457 --- /dev/null +++ b/changelogs/fragments/async-dir.yaml @@ -0,0 +1,7 @@ +minor_changes: +- windows async - change default directory from ``$env:TEMP\.ansible_async`` to ``$env:USERPROFILE\.ansible_async`` to match the POSIX standard. +- windows async - async directory is now controlled by the ``async_dir`` shell option and not ``remote_tmp`` to match the POSIX standard. +bugfixes: +- async - fixed issue where the shell option ``async_dir`` was not being used when setting the async directory. +deprecated_features: +- async - setting the async directory using ``ANSIBLE_ASYNC_DIR`` as an environment key in a task or play is deprecated and will be removed in Ansible 2.12. Set a var name ``ansible_async_dir`` instead. |