From 77b68f9b9d9957fcf578c2b8d8db95a578d2c4e2 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 19 Aug 2018 19:32:38 +0100 Subject: [PATCH] issue #321: docs fixes --- docs/ansible.rst | 6 +++--- docs/changelog.rst | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/ansible.rst b/docs/ansible.rst index 556fd686..bdd05307 100644 --- a/docs/ansible.rst +++ b/docs/ansible.rst @@ -412,7 +412,7 @@ operating mode. In the best case when pipelining is enabled and no temporary uploads are required, for each task Ansible will create one directory below a system-supplied temporary directory returned by :func:`tempfile.mkdtemp`, owned -by the target user account a new-style module intends to execute in. +by the target account a new-style module will execute in. In other cases depending on the task type, whether become is active, whether the target become user is privileged, whether the associated action plugin @@ -449,8 +449,8 @@ however only one directory exists for the lifetime of each interpreter, its location is consistent for each target account, and it is always privately owned by that account. -The paths below are tried until one is found that is writeable and appears live -on a filesystem with ``noexec`` disabled: +The paths below are tried until one is found that is writeable and lives on a +filesystem with ``noexec`` disabled: 1. ``$variable`` and tilde-expanded ``remote_tmp`` setting from ``ansible.cfg`` diff --git a/docs/changelog.rst b/docs/changelog.rst index d86b3358..f3e0dab5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -46,9 +46,9 @@ Mitogen for Ansible * `#321 `_: temporary file handling has been simplified and additional network roundtrips have been removed, - undoing earlier damage caused by compatibility bug fixes. A single directory - is created once at startup for each persistent interpreter. See - :ref:`ansible_tempfiles` for a complete description. + undoing earlier damage caused by compatibility fixes, and improving 2.6 + compatibility. One directory is created at startup for each persistent + interpreter. See :ref:`ansible_tempfiles` for a complete description. * `#324 `_: plays with a custom ``module_utils`` would fail due to fallout from the Python 3 port and related