mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #44164 from terminalmage/fix-docker-docstring
Fix examples in docker_container.{stopped,absent} docstrings
This commit is contained in:
commit
1427c72e1e
1 changed files with 4 additions and 4 deletions
|
@ -1853,7 +1853,7 @@ def stopped(name=None,
|
|||
.. code-block:: yaml
|
||||
|
||||
stopped_containers:
|
||||
docker.stopped:
|
||||
docker_container.stopped:
|
||||
- names:
|
||||
- foo
|
||||
- bar
|
||||
|
@ -1862,7 +1862,7 @@ def stopped(name=None,
|
|||
.. code-block:: yaml
|
||||
|
||||
stopped_containers:
|
||||
docker.stopped:
|
||||
docker_container.stopped:
|
||||
- containers:
|
||||
- foo
|
||||
- bar
|
||||
|
@ -1998,10 +1998,10 @@ def absent(name, force=False):
|
|||
.. code-block:: yaml
|
||||
|
||||
mycontainer:
|
||||
docker.absent
|
||||
docker_container.absent
|
||||
|
||||
multiple_containers:
|
||||
docker.absent:
|
||||
docker_container.absent:
|
||||
- names:
|
||||
- foo
|
||||
- bar
|
||||
|
|
Loading…
Add table
Reference in a new issue