Merge pull request #6902 from hvnsweeting/fix_overstate

wrap match name in quote to make sure it work
This commit is contained in:
Thomas S Hatch 2013-08-26 10:13:31 -07:00
commit 4b34b30486

View File

@ -28,12 +28,12 @@ or to execute a state.highstate.
.. code-block:: yaml
mysql:
match: db*
match: 'db*'
sls:
- mysql.server
- drbd
webservers:
match: web*
match: 'web*'
require:
- mysql
all:
@ -76,7 +76,7 @@ Executing the Over State
The over state can be executed from the salt-run command, calling the
state.over runner function. The function will by default look in the base
environment for the overstate.sls file:
environment for the `overstate.sls` file:
.. code-block:: bash