-
Notifications
You must be signed in to change notification settings - Fork 547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Unpin rstcheck dependency and update to version 6.x #2344
base: devel
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,7 @@ A collection skeleton is a directory that looks like a collection directory but | |
|
||
An example ``galaxy.yml.j2`` file that accepts an optional dictionary variable ``dependencies`` could look like this: | ||
|
||
.. code-block:: yaml | ||
.. code-block:: ini | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be |
||
|
||
namespace: {{ namespace }} | ||
name: {{ collection_name }} | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -53,7 +53,7 @@ The following table shows an example of how an initial resource configuration ch | |||||
+-----------------------------------------+------------------------------------+-----------------------------------------+ | ||||||
| Resource starting configuration | task-provided configuration (YAML) | Final resource configuration on device | | ||||||
+=========================================+====================================+=========================================+ | ||||||
| .. code-block:: text | .. code-block:: yaml | *merged* | | ||||||
| .. code-block:: text | .. code-block:: ini | *merged* | | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid trailing whitespaces. Also, it's not ini, just like in many places Felix marked.
Suggested change
|
||||||
| | | .. code-block:: text | | ||||||
| interface loopback100 | config: | | | ||||||
| ip address 10.10.1.100 255.255.255.0 | - ipv6: | interface loopback100 | | ||||||
|
@@ -88,7 +88,7 @@ Network resource modules return the following details: | |||||
* The *after* state - the new resource configuration that exists on the network device after the task was executed. | ||||||
* Commands - any commands configured on the device. | ||||||
|
||||||
.. code-block:: yaml | ||||||
.. code-block:: ini | ||||||
|
||||||
ok: [nxos101] => | ||||||
result: | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -157,7 +157,7 @@ The playbook below | |||||
|
||||||
displays the details | ||||||
|
||||||
.. code-block:: yaml | ||||||
.. code-block:: shell | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is either
Suggested change
|
||||||
|
||||||
shell> ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook -i hosts playbook.yml | ||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be
yaml+jinja
? This is definitely not an INI file.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly.