Skip to content

Commit

Permalink
states.file: fix indentation in YAML examples (#34003)
Browse files Browse the repository at this point in the history
  • Loading branch information
vutny authored and Nicole Thomas committed Jun 14, 2016
1 parent 4c7fac0 commit 7d940ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions salt/states/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -1810,7 +1810,7 @@ def directory(name,
.. code-block:: yaml
/var/log/httpd:
file.directory:
file.directory:
- user: root
- group: root
- dir_mode: 755
Expand All @@ -1825,7 +1825,7 @@ def directory(name,
.. code-block:: yaml
/var/log/httpd:
file.directory:
file.directory:
- user: root
- group: root
- dir_mode: 755
Expand Down Expand Up @@ -4657,12 +4657,12 @@ def mknod(name, ntype, major=0, minor=0, user=None, group=None, mode='0600'):
- group: root
- mode: 660
/dev/fifo:
file.mknod:
- ntype: p
- user: root
- group: root
- mode: 660
/dev/fifo:
file.mknod:
- ntype: p
- user: root
- group: root
- mode: 660
.. versionadded:: 0.17.0
'''
Expand Down

0 comments on commit 7d940ae

Please sign in to comment.