Commit Graph

14 Commits

Author SHA1 Message Date
Seth House
51fa87c446 Change all state examples to use short-dec format for consistency
Closes #12419.

The command used to search the docs for state examples is below. This
generates a file in Vim's quickfix format that can be loaded with the -q
flag.

find . -type f \( -name '*.rst' -o -name '*.py' \) -print0
    | xargs -0 -P10 -n1 awk '
        BEGIN { RS=""; FS="\n" }
        { linenr = linect; linect += (NF + 1) }
        /^\s+[a-zA-Z0-9'\''_-]+:\n\s+[a-zA-Z0-9'\''_-]+:\n\s+- / {
            print FILENAME "|" linenr + 2 "|", $1
        }
    ' > ./salt-states.quickfix
2014-12-12 23:36:40 -07:00
Elias Probst
5580c714a5 Fix YAML syntax in mine_functions example.
The elements provided for a mine_functions definition need to be
either a list or a dict, but not a mix of both.
2014-11-14 21:25:30 +01:00
Seth House
05022c6adb Documented the mine_function alises
Closes #14738
2014-08-09 11:14:25 -06:00
Ahmad Sherif
0d94f4326d Move mine_interval example to a minion conf file
mine_interval has no effect when added in a pillar
2014-05-17 01:22:38 +03:00
Seth House
4f99597ce7 Comit 30,000. Woo! 2014-05-01 12:48:30 -06:00
Thomas S Hatch
6a9658bb98 Merge pull request #12423 from whiteinge/doc-mine-args
Clarified Salt Mine docs on how to pass arguments
2014-04-30 13:08:33 -06:00
Seth House
fe3d6d4630 Clarified Salt Mine docs on how to pass arguments 2014-04-30 13:04:59 -06:00
Joseph Hall
253a44f51c Merge pull request #12414 from whiteinge/doc-salt-mine-ex
Add example to Salt Mine docs
2014-04-30 10:06:18 -06:00
Seth House
9dcc8a3eda Removed version added from Salt Mine docs; other clean up 2014-04-30 09:58:38 -06:00
Seth House
6ce4b953eb Added a full example to the Salt Mine docs 2014-04-30 09:58:30 -06:00
Seth House
8022565be4 Added index entries for Salt Mine 2014-04-29 21:43:13 -06:00
Seth House
509d007da3 Added Mine example with arguments
Closes #11227
2014-04-17 17:58:34 -06:00
Seth House
32425e7148 Added rST anchor to Salt Mine docs 2013-11-20 20:23:31 -08:00
Thomas S Hatch
3d92e9544e Add docs for the salt mine 2013-04-22 00:07:23 -06:00