Jacob Hammons
887a415138
Adds new Understanding Jinja topic, and fixes several Jinja doc issues.
...
Removes the "Full list of builtin ..." from each module reference list, leaving just the module type for scanability.
Refs #12470
Refs #10206
Refs #10480
Refs #23522
Refs #33023
2016-06-13 18:30:42 -06:00
rallytime
f6d9cdc633
Merge branch '2015.8' into '2016.3'
...
Conflicts:
- doc/ref/states/compiler_ordering.rst
- doc/topics/installation/suse.rst
- doc/topics/jobs/schedule.rst
- doc/topics/targeting/grains.rst
- doc/topics/tutorials/preseed_key.rst
- doc/topics/tutorials/states_pt5.rst
- pkg/suse/use-forking-daemon.patch
- salt/minion.py
- salt/modules/pacman.py
- salt/modules/state.py
- salt/modules/yumpkg.py
2016-03-25 11:47:16 -06:00
rallytime
7554d0f42d
Merge branch '2015.5' into '2015.8'
...
Conflicts:
- doc/ref/states/include.rst
- doc/topics/cloud/reactor.rst
- doc/topics/reactor/index.rst
- doc/topics/releases/2015.5.10.rst
- doc/topics/tutorials/states_pt5.rst
- doc/topics/windows/windows-package-manager.rst
- salt/config.py
- salt/modules/state.py
- salt/states/grains.py
- tests/integration/modules/sysmod.py
- tests/unit/states/grains_test.py
2016-03-24 15:48:00 -06:00
Erik Johnson
1b97e4a3df
Improve state module docs, replace references to state.highstate/state.sls with state.apply
...
Resolves #32037 .
2016-03-21 22:56:17 -05:00
Colton Myers
7f8e666b8c
Merge remote-tracking branch 'upstream/2015.8' into merge-forward-develop
...
Conflicts:
salt/states/user.py
2016-01-06 09:30:28 -07:00
Colton Myers
d73a7d6c4d
Merge remote-tracking branch 'upstream/2015.5' into merge-forward-2015.8
...
Conflicts:
doc/topics/ssh/index.rst
2016-01-05 16:11:20 -07:00
Mike Place
040412b0b1
Merge pull request #30093 from zmalone/pillar-notes
...
Noting that file_roots and "state tree" should both be avoided
2015-12-30 15:40:05 -07:00
Zach Malone
cfbfd58afe
Noting that file_roots and "state tree" should both be avoided, because in some
...
environments, the actual states show up another level down. Adding notes about why this is undesirable.
2015-12-30 13:10:46 -07:00
Colton Myers
32969b2408
Merge remote-tracking branch 'upstream/2015.8' into merge-forward-develop
...
Conflicts:
doc/topics/cloud/digitalocean.rst
salt/cloud/clouds/digital_ocean.py
salt/cloud/clouds/linode.py
salt/loader.py
salt/modules/blockdev.py
salt/modules/boto_route53.py
salt/modules/boto_vpc.py
salt/modules/bsd_shadow.py
salt/modules/file.py
salt/modules/rabbitmq.py
salt/modules/schedule.py
salt/modules/win_network.py
salt/runners/state.py
salt/spm/__init__.py
tests/unit/modules/blockdev_test.py
2015-11-02 18:19:01 -07:00
Colton Myers
3286a5250f
Merge remote-tracking branch 'upstream/2015.5' into merge-forward-2015.8
...
Conflicts:
doc/topics/installation/windows.rst
doc/topics/tutorials/pillar.rst
pkg/windows/installer/Salt-Minion-Setup.nsi
salt/modules/file.py
salt/modules/schedule.py
salt/pillar/git_pillar.py
salt/states/boto_route53.py
salt/states/pkg.py
tests/integration/modules/pillar.py
2015-10-30 16:05:26 -06:00
Gary Waters
b15285c0b4
adding a working example of setting pillar data on the cli
2015-10-26 14:22:38 -07:00
Forrest Alvarez
aa0d4d406e
Fix a spelling error.
2015-10-23 14:58:19 -07:00
Forrest Alvarez
6dde4e01c0
Update the pillar tutorial to talk about nested pillar values.
2015-10-23 14:57:11 -07:00
Colton Myers
94d6ef1d17
Merge remote-tracking branch 'upstream/2015.5' into merge-forward-develop
...
Conflicts:
doc/ref/modules/all/salt.modules.ipmi.rst
doc/ref/states/all/salt.states.tls.rst
doc/topics/cloud/index.rst
doc/topics/cloud/vsphere.rst
doc/topics/eauth/index.rst
salt/cli/batch.py
salt/modules/cmdmod.py
salt/modules/ipmi.py
salt/netapi/rest_cherrypy/app.py
salt/runners/http.py
salt/states/boto_elb.py
salt/states/dockerio.py
salt/states/linux_acl.py
salt/states/win_servermanager.py
salt/wheel/config.py
2015-06-09 11:41:07 -06:00
Jacob Hammons
d45c4ed11f
Bug fixes and build errors
...
Refs #23211
Refs #24268
Refs #24235
Refs #24193
Refs #24172
Refs #19901
Refs #19801
2015-06-05 17:32:35 -06:00
Diego Woitasen
e6f64019a8
How to store Minion config options on Pillars.
2015-02-02 09:27:13 -03:00
Colton Myers
fc16bd16c0
Merge branch '2014.7' into merge-forward
...
Conflicts:
doc/faq.rst
doc/ref/states/compiler_ordering.rst
doc/topics/best_practices.rst
doc/topics/development/conventions/formulas.rst
salt/config.py
salt/modules/state.py
salt/states/mount.py
salt/utils/event.py
tests/unit/utils/process_test.py
2014-12-16 14:45:25 -07:00
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
Thomas Jackson
c18e834be1
Fix trailing whitespace
...
Conflicts:
doc/topics/tutorials/states_pt2.rst
2014-12-11 07:53:19 -08:00
Chris Rebert
d37690e156
fix typos: retreived [sic]
2014-10-27 16:13:46 -07:00
Thomas S Hatch
3e204c16f3
Merge branch '2014.7' into develop
2014-09-29 20:07:01 -06:00
rallytime
38db7b7d5e
Add note on how to set pillar data on the command line to pillar tutorial
...
Closes #14217
2014-09-29 16:04:30 -06:00
Simon Schmidt
f4c9ec24de
Fix saltutil.refresh_pillar reference in Pillar tutorial
...
It used to reference `saltutil.pillar_refresh` which gives the error:
'saltutil.pillar_refresh' is not available.
2014-09-01 20:38:50 +02:00
Mike Place
0d03e31fb7
Add info about pillar refresh.
2014-08-25 10:56:55 -06:00
Khris Richardson
1acd82f3f1
add sphinx spelling extension. enforce en_us
2014-07-13 13:43:33 -05:00
Michael Lustfield
5eab3db366
minor doc touchups
2014-05-24 23:42:00 -05:00
Chris Rebert
8af229253f
more copyediting
2014-04-30 13:55:48 -07:00
Kieran Spear
20c2583b8e
Fix doc typo
2014-04-17 22:18:20 +10:00
Nicole Thomas
8aeaf24cff
Fixed spelling error in pillar documentation
2014-04-03 09:42:48 -06:00
viod
f6bd8415b3
Add the indication that pillar_roots should not be subdirectories of file_roots, as that won't work, everywhere it looks relevant.
2014-03-03 00:15:51 +01:00
Thomas S Hatch
9658aaa27b
Clean up pillar walkthrough
2014-02-27 15:43:24 -07:00
Steve Bennett
44632b919b
Improvements to the Pillar Walkthrough as per #10467
2014-02-24 23:03:44 +11:00
David Boucha
32f5afc175
Fix typo. The dict is 'grains' not 'grain'
2013-11-15 21:18:14 -07:00
Seth House
4f00fa256b
Fixed occurances of "Salt Stack" to SaltStack
2013-11-07 10:46:41 -07:00
Erik Johnson
9c63495e04
Formatting fixes
...
This completes the documentation audit begun in cf365f7
, using proper
backticks and :strong: tags to emphasize text, converting groups of
shell commands to bash code-block sections, etc. This also replaces the
use of \* with the easier-to-grok '*', which will hopefully reduce
confusion among new users.
2013-08-11 22:17:47 -05:00
Erik Johnson
eb339ef1fa
Replace references to 0.16.1 with 0.16.2
2013-08-01 20:10:45 -05:00
Erik Johnson
f863417790
Update references to pillar.data in docs
2013-07-22 16:09:51 -05:00
Tim Hollinger
bf043f6603
added 'be' to 'need to updated' since I need a verb there.
...
Added a verb to 'need to updated' so it looks as though I passed 2nd
grade English :P
2013-04-16 15:32:52 -06:00
Tim Hollinger
50917223c2
minor fixes
...
Fixed Debian / Redhat httpd
2013-04-05 17:25:46 -06:00
Gary Wilson Jr
bd499e5640
Fixed several minor misspellings and acronym capitalizations.
2013-03-18 16:42:57 -05:00
Gary Wilson Jr
8c39c1743a
Added a couple missing language specifiers for the code-block directive and switched a couple 'yaml' specifications to 'jinja' to get proper highlighting.
2013-03-18 16:42:56 -05:00
Gary Wilson Jr
3850e189e5
Corrected walkthrough path in doc reference.
2013-03-18 16:42:56 -05:00
Gary Wilson Jr
cc72ebb1fb
Fixed :doc: uses in the docs that were not rendering due to an extra space.
2013-03-18 16:42:56 -05:00
Thomas S Hatch
b03ca985c2
update the pillar walkthrough with the new get functions
2013-03-18 13:38:47 -06:00
Thomas S Hatch
e3cb131d8a
Add pillar walkthrough
2013-03-13 23:45:44 -06:00