Skip to content

Commit adddb48

Browse files
committed
change lexer names to fix ci
1 parent fbb66f2 commit adddb48

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

docs/docsite/rst/dev_guide/developing_collections_distributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ For example, to exclude the :file:`sensitive` folder within the ``playbooks`` fo
220220
221221
By default, the ``MANIFEST.in`` style directives would exclude all files by default, but there are default directives in place. Those default directives are described below. To see the directives in use during build, pass ``-vvv`` with the ``ansible-galaxy collection build`` command.
222222

223-
.. code-block:: manifest
223+
.. code-block:: text
224224
225225
include meta/*.yml
226226
include *.txt *.md *.rst COPYING LICENSE

docs/docsite/rst/os_guide/intro_bsd.rst

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -157,36 +157,36 @@ The playbook below
157157
158158
displays the details
159159

160-
.. code-block:: ansible-output
160+
.. code-block:: text
161161
162-
shell> ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i hosts playbook.yml
162+
shell> ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i hosts playbook.yml
163163
164-
PLAY [test_11] *******************************************************************************
164+
PLAY [test_11] *******************************************************************************
165165
166-
TASK [command] *******************************************************************************
167-
[WARNING]: Platform freebsd on host test_11 is using the discovered Python interpreter at
168-
/usr/local/bin/python, but future installation of another Python interpreter could change the
169-
meaning of that path. See https://docs.ansible.com/ansible-
170-
core/2.18/reference_appendices/interpreter_discovery.html for more information.
171-
changed: [test_11]
166+
TASK [command] *******************************************************************************
167+
[WARNING]: Platform freebsd on host test_11 is using the discovered Python interpreter at
168+
/usr/local/bin/python, but future installation of another Python interpreter could change the
169+
meaning of that path. See https://docs.ansible.com/ansible-
170+
core/2.18/reference_appendices/interpreter_discovery.html for more information.
171+
changed: [test_11]
172172
173-
TASK [debug] *********************************************************************************
174-
ok: [test_11] =>
175-
result.stdout: /usr/local/bin/python
173+
TASK [debug] *********************************************************************************
174+
ok: [test_11] =>
175+
result.stdout: /usr/local/bin/python
176176
177-
TASK [debug] *********************************************************************************
178-
ok: [test_11] =>
179-
msg: |-
180-
ansible_interpreter_python_fallback:
181-
- /usr/local/bin/python
182-
- /usr/local/bin/python3
183-
- /usr/local/bin/python3.11
177+
TASK [debug] *********************************************************************************
178+
ok: [test_11] =>
179+
msg: |-
180+
ansible_interpreter_python_fallback:
181+
- /usr/local/bin/python
182+
- /usr/local/bin/python3
183+
- /usr/local/bin/python3.11
184184
185-
discovered_interpreter_python:
186-
/usr/local/bin/python
185+
discovered_interpreter_python:
186+
/usr/local/bin/python
187187
188-
ansible_playbook_python:
189-
/usr/bin/python3
188+
ansible_playbook_python:
189+
/usr/bin/python3
190190
191191
You can see that the first item from the list ``ansible_interpreter_python_fallback`` was discovered at the FreeBSD remote host. The variable ``ansible_playbook_python`` keeps the path to Python at the Linux control node that ran the playbook.
192192

0 commit comments

Comments
 (0)