From e9f94e1bbb4e5e5598644427bbce288b9a03940d Mon Sep 17 00:00:00 2001 From: David Wilson Date: Mon, 9 Apr 2018 15:12:39 +0100 Subject: [PATCH] docs: tidy up big list of bullets. --- docs/ansible.rst | 44 ++++++++++++++++++++------------------------ 1 file changed, 20 insertions(+), 24 deletions(-) diff --git a/docs/ansible.rst b/docs/ansible.rst index 1e09dd6c..4bd7a54c 100644 --- a/docs/ansible.rst +++ b/docs/ansible.rst @@ -207,40 +207,36 @@ for each invocation. Unmodified modules are uploaded once on first use and cached in RAM for the remainder of the run. **Binary** - * Native executables detected using a complex heuristic. - * Arguments are supplied as a JSON file whose path is the sole script - parameter. + Native executables detected using a complex heuristic. Arguments are + supplied as a JSON file whose path is the sole script parameter. **Module Replacer** - * Python scripts detected by the presence of - ``#<>`` appearing in their source. - * Not yet supported. + Python scripts detected by the presence of + ``#<>`` appearing in their source. This type + is not yet supported. **New-Style** - * Python scripts detected by the presence of ``from ansible.module_utils.`` - appearing in their source. - * Arguments are supplied as JSON written to ``sys.stdin`` of the target - interpreter. + Python scripts detected by the presence of ``from ansible.module_utils.`` + appearing in their source. Arguments are supplied as JSON written to + ``sys.stdin`` of the target interpreter. **JSON_ARGS** - * Detected by the presence of ``INCLUDE_ANSIBLE_MODULE_JSON_ARGS`` - appearing in the script source. - * The interpreter directive (``#!interpreter``) is adjusted to match the - corresponding value of ``{{ansible_*_interpreter}}`` if one is set. - * Arguments are supplied as JSON mixed into the script as a replacement for - ``INCLUDE_ANSIBLE_MODULE_JSON_ARGS``. + Detected by the presence of ``INCLUDE_ANSIBLE_MODULE_JSON_ARGS`` appearing + in the script source. The interpreter directive (``#!interpreter``) is + adjusted to match the corresponding value of ``{{ansible_*_interpreter}}`` + if one is set. Arguments are supplied as JSON mixed into the script as a + replacement for ``INCLUDE_ANSIBLE_MODULE_JSON_ARGS``. **WANT_JSON** - * Detected by the presence of ``WANT_JSON`` appearing in the script source. - * The interpreter directive is adjusted as above. - * Arguments are supplied as a JSON file whose path is the sole script - parameter. + Detected by the presence of ``WANT_JSON`` appearing in the script source. + The interpreter directive is adjusted as above. Arguments are supplied as a + JSON file whose path is the sole script parameter. **Old Style** - * Files not matching any of the above tests. - * The interpreter directive is adjusted as above. - * Arguments are supplied as a file whose path is the sole script parameter. - The format of the file is ``"key=repr(value)[ key2=repr(value2)[ ..]] "``. + Files not matching any of the above tests. The interpreter directive is + adjusted as above. Arguments are supplied as a file whose path is the sole + script parameter. The format of the file is ``"key=repr(value)[ + key2=repr(value2)[ ..]] "``. Sample Profiles