diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2018-02-15 09:01:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-15 09:01:02 -0800 |
commit | 06f73ad578d840c7ea5875b7cd4ffd08e2d9d0e8 (patch) | |
tree | 721a0ad5a9a1fa03229ad19a8dcd10dbb54a10b6 /bin | |
parent | 2678508d427618c6d50f447f41689a1b31d72b86 (diff) | |
download | ansible-06f73ad578d840c7ea5875b7cd4ffd08e2d9d0e8.tar.gz |
Normalize usage of temp and tmp on tmp (#36221)
* Normalize usage of temp and tmp on tmp
* Rename system_tmps system_tmpdirs
* Add ANSIBLE_REMOTE_TMP spelling of environment variables
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ansible | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible b/bin/ansible index c3d9620115..cc4bfd7a69 100755 --- a/bin/ansible +++ b/bin/ansible @@ -157,7 +157,7 @@ if __name__ == '__main__': display.display(u"the full traceback was:\n\n%s" % to_text(traceback.format_exc()), log_only=log_only) exit_code = 250 finally: - # Remove ansible tempdir + # Remove ansible tmpdir shutil.rmtree(C.DEFAULT_LOCAL_TMP, True) sys.exit(exit_code) |