diff options
author | Sandra McCann <samccann@redhat.com> | 2022-10-06 17:59:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 16:59:46 -0500 |
commit | 9d7989fbe83182a48b427b10c808b9bc237cd759 (patch) | |
tree | 2c93561954680eb90346fd0093a96414c399d151 /docs/docsite/rst/dev_guide/debugging.rst | |
parent | 7077ea7f95700718ffbe5557f2690b27f11a6509 (diff) | |
download | ansible-9d7989fbe83182a48b427b10c808b9bc237cd759.tar.gz |
Backport hacktoberfest 2 (#79067)
* Docs: Replace Latin terms in the dev_guide #78997 (#79005)
(cherry picked from commit fbd98cd8246e8554269b2c766db2b2228cc30bd9)
* replace with boolean true/false (#78950)
(cherry picked from commit 78c9fb415954ca630f028fe7a7d154658fc41422)
* docs: replace latin terms with english in the os_guide directory (#79007)
Fixes #79003
(cherry picked from commit 55925958ea8ea48273c7ade660ceea0e9e24f348)
Co-authored-by: Mazen Ramadan <mazenramadan00@gmail.com>
Co-authored-by: Niranjan Meghwal <56632168+NiranjanMeghwal@users.noreply.github.com>
Co-authored-by: Samuel Gaist <samuel.gaist@idiap.ch>
Diffstat (limited to 'docs/docsite/rst/dev_guide/debugging.rst')
-rw-r--r-- | docs/docsite/rst/dev_guide/debugging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/dev_guide/debugging.rst b/docs/docsite/rst/dev_guide/debugging.rst index 43f9e23dc7..0ed23c5881 100644 --- a/docs/docsite/rst/dev_guide/debugging.rst +++ b/docs/docsite/rst/dev_guide/debugging.rst @@ -94,7 +94,7 @@ The following steps use ``localhost`` as the target host, but you can use the sa $ python AnsiballZ_ping.py execute {"invocation": {"module_args": {"data": "debugging_session"}}, "changed": false, "ping": "debugging_session"} - This subcommand inserts the absolute path to ``debug_dir`` as the first item in ``sys.path`` and invokes the script using the arguments in the ``args`` file. You can continue to run the module like this until you understand the problem. Then you can copy the changes back into your real module file and test that the real module works via ``ansible`` or ``ansible-playbook``. + This subcommand inserts the absolute path to ``debug_dir`` as the first item in ``sys.path`` and invokes the script using the arguments in the ``args`` file. You can continue to run the module like this until you understand the problem. Then you can copy the changes back into your real module file and test that the real module works by using the ``ansible`` or ``ansible-playbook``. .. _simple_debugging: |