mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Merge pull request #6902 from hvnsweeting/fix_overstate
wrap match name in quote to make sure it work
This commit is contained in:
commit
4b34b30486
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user