mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add module configuration examples to the config file
This commit is contained in:
parent
debff04405
commit
c4b5300850
1 changed files with 17 additions and 0 deletions
17
conf/minion
17
conf/minion
|
@ -40,3 +40,20 @@
|
|||
# The log level for posting to the terminal
|
||||
#out_level: ERROR
|
||||
|
||||
|
||||
###### Module configuration #####
|
||||
###########################################
|
||||
# Salt allows for modules to be passed arbitrairy configuration data, any data
|
||||
# passed here in valid yaml format will be passed on to the salt minion modules
|
||||
# for use. It is STRONGLY recomended that a naming convention be used in which
|
||||
# the module name is followed by a . and then the value. Also, all top level
|
||||
# data must be allied via the yaml dict construct, some examples:
|
||||
#
|
||||
# A simple value for the test module:
|
||||
#test.foo: foo
|
||||
#
|
||||
# A list for the test module:
|
||||
#test.bar: [baz,quo]
|
||||
#
|
||||
# A dict for the test moule:
|
||||
#test.baz: {spam: sausage, cheese: bread}
|
||||
|
|
Loading…
Add table
Reference in a new issue