Merge pull request #8844 from blakfeld/develop

Fixed formatting error
This commit is contained in:
Joseph Hall 2013-11-26 18:49:42 -08:00
commit b531916cc4

View File

@ -39,12 +39,12 @@ Salt also supports running a cron every ``x minutes`` very similarily to the Uni
convention of using ``*/5`` to have a job run every five minutes. In Salt, this
looks like:
..code-block:: yaml
.. code-block:: yaml
data > /tmp/crontest:
cron.present:
- user: root
- minute: '*/5'
date > /tmp/crontest:
cron.present:
- user: root
- minute: '*/5'
The job will now run every 5 minutes.