Saltstack Official Salt Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

760 lines
31KB

  1. # This file managed by Salt, do not edit by hand!!
  2. # Based on salt version 2015.8.7 default config
  3. #
  4. {% set reserved_keys = ['master', 'minion', 'cloud', 'salt_cloud_certs'] -%}
  5. {% set cfg_salt = pillar.get('salt', {}) -%}
  6. {% set cfg_minion = cfg_salt.get('minion', {}) -%}
  7. {%- macro get_config(configname, default_value) -%}
  8. {%- if configname in cfg_minion -%}
  9. {{ configname }}: {{ cfg_minion[configname] }}
  10. {%- elif configname in cfg_salt and configname not in reserved_keys -%}
  11. {{ configname }}: {{ cfg_salt[configname] }}
  12. {%- else -%}
  13. #{{ configname }}: {{ default_value }}
  14. {%- endif -%}
  15. {%- endmacro -%}
  16. {%- from 'salt/formulas.jinja' import file_roots, formulas with context -%}
  17. ##### Primary configuration settings #####
  18. ##########################################
  19. # This configuration file is used to manage the behavior of the Salt Minion.
  20. # With the exception of the location of the Salt Master Server, values that are
  21. # commented out but have an empty line after the comment are defaults that need
  22. # not be set in the config. If there is no blank line after the comment, the
  23. # value is presented as an example and is not the default.
  24. # Per default the minion will automatically include all config files
  25. # from minion.d/*.conf (minion.d is a directory in the same directory
  26. # as the main minion config file).
  27. {{ get_config('default_include', 'minion.d/*.conf') }}
  28. # Set the location of the salt master server. If the master server cannot be
  29. # resolved, then the minion will fail to start.
  30. {%- if 'master' in cfg_minion and cfg_minion['master'] is not string %}
  31. master:
  32. {% for name in cfg_minion['master'] -%}
  33. - {{ name }}
  34. {% endfor -%}
  35. {%- else %}
  36. {{ get_config('master', 'salt') }}
  37. {%- endif %}
  38. # If multiple masters are specified in the 'master' setting, the default behavior
  39. # is to always try to connect to them in the order they are listed. If random_master is
  40. # set to True, the order will be randomized instead. This can be helpful in distributing
  41. # the load of many minions executing salt-call requests, for example, from a cron job.
  42. # If only one master is listed, this setting is ignored and a warning will be logged.
  43. # NOTE: If master_type is set to failover, use master_shuffle instead.
  44. {{ get_config('random_master', 'False') }}
  45. # Use if master_type is set to failover.
  46. {{ get_config('master_shuffle', 'False') }}
  47. # Minions can connect to multiple masters simultaneously (all masters
  48. # are "hot"), or can be configured to failover if a master becomes
  49. # unavailable. Multiple hot masters are configured by setting this
  50. # value to "str". Failover masters can be requested by setting
  51. # to "failover". MAKE SURE TO SET master_alive_interval if you are
  52. # using failover.
  53. {{ get_config('master_type', 'str') }}
  54. # verify_master_pubkey_sign
  55. {{ get_config('verify_master_pubkey_sign', 'False') }}
  56. # Poll interval in seconds for checking if the master is still there. Only
  57. # respected if master_type above is "failover". To disable the interval entirely,
  58. # set the value to -1. (This may be necessary on machines which have high numbers
  59. # of TCP connections, such as load balancers.)
  60. {{ get_config('master_alive_interval', '30') }}
  61. # Set whether the minion should connect to the master via IPv6:
  62. {{ get_config('ipv6', 'False') }}
  63. # Set the number of seconds to wait before attempting to resolve
  64. # the master hostname if name resolution fails. Defaults to 30 seconds.
  65. # Set to zero if the minion should shutdown and not retry.
  66. {{ get_config('retry_dns', '30') }}
  67. # Set the port used by the master reply and authentication server.
  68. {{ get_config('master_port', '4506') }}
  69. # The user to run salt.
  70. {{ get_config('user', 'root') }}
  71. # Setting sudo_user will cause salt to run all execution modules under an sudo
  72. # to the user given in sudo_user. The user under which the salt minion process
  73. # itself runs will still be that provided in the user config above, but all
  74. # execution modules run by the minion will be rerouted through sudo.
  75. {{ get_config('sudo_user', 'saltdev') }}
  76. # Specify the location of the daemon process ID file.
  77. {{ get_config('pidfile', '/var/run/salt-minion.pid') }}
  78. # The root directory prepended to these options: pki_dir, cachedir, log_file,
  79. # sock_dir, pidfile.
  80. {{ get_config('root_dir', '/') }}
  81. # The directory to store the pki information in
  82. {{ get_config('pki_dir', '/etc/salt/pki/minion') }}
  83. # Explicitly declare the id for this minion to use, if left commented the id
  84. # will be the hostname as returned by the python call: socket.getfqdn()
  85. # Since salt uses detached ids it is possible to run multiple minions on the
  86. # same machine but with different ids, this can be useful for salt compute
  87. # clusters.
  88. {% if 'id' in cfg_minion -%}
  89. id: {{ cfg_minion['id'] }}
  90. {% else -%}
  91. #id:
  92. {%- endif %}
  93. # Append a domain to a hostname in the event that it does not exist. This is
  94. # useful for systems where socket.getfqdn() does not actually result in a
  95. # FQDN (for instance, Solaris).
  96. {{ get_config('append_domain', '') }}
  97. # Custom static grains for this minion can be specified here and used in SLS
  98. # files just like all other grains. This example sets 4 custom grains, with
  99. # the 'roles' grain having two values that can be matched against.
  100. #grains:
  101. # roles:
  102. # - webserver
  103. # - memcache
  104. # deployment: datacenter4
  105. # cabinet: 13
  106. # cab_u: 14-15
  107. {{ get_config('grains', '{}') }}
  108. # Where cache data goes.
  109. # This data may contain sensitive data and should be protected accordingly.
  110. {{ get_config('cachedir', '/var/cache/salt/minion') }}
  111. # Verify and set permissions on configuration directories at startup.
  112. {{ get_config('verify_env', 'True') }}
  113. # The minion can locally cache the return data from jobs sent to it, this
  114. # can be a good way to keep track of jobs the minion has executed
  115. # (on the minion side). By default this feature is disabled, to enable, set
  116. # cache_jobs to True.
  117. {{ get_config('cache_jobs', 'False') }}
  118. # Set the directory used to hold unix sockets.
  119. {{ get_config('sock_dir', '/var/run/salt/minion') }}
  120. # Set the default outputter used by the salt-call command. The default is
  121. # "nested".
  122. {{ get_config('output', 'nested') }}
  123. # By default output is colored. To disable colored output, set the color value
  124. # to False.
  125. {{ get_config('color', 'True') }}
  126. # Do not strip off the colored output from nested results and state outputs
  127. # (true by default).
  128. {{ get_config('strip_colors', 'False') }}
  129. # Backup files that are replaced by file.managed and file.recurse under
  130. # 'cachedir'/file_backups relative to their original location and appended
  131. # with a timestamp. The only valid setting is "minion". Disabled by default.
  132. #
  133. # Alternatively this can be specified for each file in state files:
  134. # /etc/ssh/sshd_config:
  135. # file.managed:
  136. # - source: salt://ssh/sshd_config
  137. # - backup: minion
  138. #
  139. {{ get_config('backup_mode', 'minion') }}
  140. # When waiting for a master to accept the minion's public key, salt will
  141. # continuously attempt to reconnect until successful. This is the time, in
  142. # seconds, between those reconnection attempts.
  143. {{ get_config('acceptance_wait_time', '10') }}
  144. # If this is nonzero, the time between reconnection attempts will increase by
  145. # acceptance_wait_time seconds per iteration, up to this maximum. If this is
  146. # set to zero, the time between reconnection attempts will stay constant.
  147. {{ get_config('acceptance_wait_time_max', '0') }}
  148. # If the master rejects the minion's public key, retry instead of exiting.
  149. # Rejected keys will be handled the same as waiting on acceptance.
  150. {{ get_config('rejected_retry', 'False') }}
  151. # When the master key changes, the minion will try to re-auth itself to receive
  152. # the new master key. In larger environments this can cause a SYN flood on the
  153. # master because all minions try to re-auth immediately. To prevent this and
  154. # have a minion wait for a random amount of time, use this optional parameter.
  155. # The wait-time will be a random number of seconds between 0 and the defined value.
  156. {{ get_config('random_reauth_delay', '60') }}
  157. # When waiting for a master to accept the minion's public key, salt will
  158. # continuously attempt to reconnect until successful. This is the timeout value,
  159. # in seconds, for each individual attempt. After this timeout expires, the minion
  160. # will wait for acceptance_wait_time seconds before trying again. Unless your master
  161. # is under unusually heavy load, this should be left at the default.
  162. {{ get_config('auth_timeout', '60') }}
  163. # Number of consecutive SaltReqTimeoutError that are acceptable when trying to
  164. # authenticate.
  165. {{ get_config('auth_tries', '7') }}
  166. # If authentication fails due to SaltReqTimeoutError during a ping_interval,
  167. # cause sub minion process to restart.
  168. {{ get_config('auth_safemode', 'False') }}
  169. # Ping Master to ensure connection is alive (minutes).
  170. {{ get_config('ping_interval', '0') }}
  171. {%- if 'mine_functions' in cfg_minion %}
  172. mine_functions:
  173. {%- for func, args in cfg_minion['mine_functions'].items() %}
  174. {{ func }}: {{ args }}
  175. {%- endfor %}
  176. {%- endif %}
  177. # To auto recover minions if master changes IP address (DDNS)
  178. # auth_tries: 10
  179. # auth_safemode: False
  180. # ping_interval: 90
  181. #
  182. # Minions won't know master is missing until a ping fails. After the ping fail,
  183. # the minion will attempt authentication and likely fails out and cause a restart.
  184. # When the minion restarts it will resolve the masters IP and attempt to reconnect.
  185. # If you don't have any problems with syn-floods, don't bother with the
  186. # three recon_* settings described below, just leave the defaults!
  187. #
  188. # The ZeroMQ pull-socket that binds to the masters publishing interface tries
  189. # to reconnect immediately, if the socket is disconnected (for example if
  190. # the master processes are restarted). In large setups this will have all
  191. # minions reconnect immediately which might flood the master (the ZeroMQ-default
  192. # is usually a 100ms delay). To prevent this, these three recon_* settings
  193. # can be used.
  194. # recon_default: the interval in milliseconds that the socket should wait before
  195. # trying to reconnect to the master (1000ms = 1 second)
  196. #
  197. # recon_max: the maximum time a socket should wait. each interval the time to wait
  198. # is calculated by doubling the previous time. if recon_max is reached,
  199. # it starts again at recon_default. Short example:
  200. #
  201. # reconnect 1: the socket will wait 'recon_default' milliseconds
  202. # reconnect 2: 'recon_default' * 2
  203. # reconnect 3: ('recon_default' * 2) * 2
  204. # reconnect 4: value from previous interval * 2
  205. # reconnect 5: value from previous interval * 2
  206. # reconnect x: if value >= recon_max, it starts again with recon_default
  207. #
  208. # recon_randomize: generate a random wait time on minion start. The wait time will
  209. # be a random value between recon_default and recon_default +
  210. # recon_max. Having all minions reconnect with the same recon_default
  211. # and recon_max value kind of defeats the purpose of being able to
  212. # change these settings. If all minions have the same values and your
  213. # setup is quite large (several thousand minions), they will still
  214. # flood the master. The desired behavior is to have timeframe within
  215. # all minions try to reconnect.
  216. #
  217. # Example on how to use these settings. The goal: have all minions reconnect within a
  218. # 60 second timeframe on a disconnect.
  219. # recon_default: 1000
  220. # recon_max: 59000
  221. # recon_randomize: True
  222. #
  223. # Each minion will have a randomized reconnect value between 'recon_default'
  224. # and 'recon_default + recon_max', which in this example means between 1000ms
  225. # 60000ms (or between 1 and 60 seconds). The generated random-value will be
  226. # doubled after each attempt to reconnect. Lets say the generated random
  227. # value is 11 seconds (or 11000ms).
  228. # reconnect 1: wait 11 seconds
  229. # reconnect 2: wait 22 seconds
  230. # reconnect 3: wait 33 seconds
  231. # reconnect 4: wait 44 seconds
  232. # reconnect 5: wait 55 seconds
  233. # reconnect 6: wait time is bigger than 60 seconds (recon_default + recon_max)
  234. # reconnect 7: wait 11 seconds
  235. # reconnect 8: wait 22 seconds
  236. # reconnect 9: wait 33 seconds
  237. # reconnect x: etc.
  238. #
  239. # In a setup with ~6000 thousand hosts these settings would average the reconnects
  240. # to about 100 per second and all hosts would be reconnected within 60 seconds.
  241. {{ get_config('recon_default', '100') }}
  242. {{ get_config('recon_max', '5000') }}
  243. {{ get_config('recon_randomize', 'False') }}
  244. # The loop_interval sets how long in seconds the minion will wait between
  245. # evaluating the scheduler and running cleanup tasks. This defaults to a
  246. # sane 60 seconds, but if the minion scheduler needs to be evaluated more
  247. # often lower this value
  248. {{ get_config('loop_interval', '60') }}
  249. # The grains_refresh_every setting allows for a minion to periodically check
  250. # its grains to see if they have changed and, if so, to inform the master
  251. # of the new grains. This operation is moderately expensive, therefore
  252. # care should be taken not to set this value too low.
  253. #
  254. # Note: This value is expressed in __minutes__!
  255. #
  256. # A value of 10 minutes is a reasonable default.
  257. #
  258. # If the value is set to zero, this check is disabled.
  259. {{ get_config('grains_refresh_every', '1') }}
  260. # Cache grains on the minion. Default is False.
  261. {{ get_config('grains_cache', 'False') }}
  262. # Grains cache expiration, in seconds. If the cache file is older than this
  263. # number of seconds then the grains cache will be dumped and fully re-populated
  264. # with fresh data. Defaults to 5 minutes. Will have no effect if 'grains_cache'
  265. # is not enabled.
  266. {{ get_config('grains_cache_expiration', '300') }}
  267. # Windows platforms lack posix IPC and must rely on slower TCP based inter-
  268. # process communications. Set ipc_mode to 'tcp' on such systems
  269. {{ get_config('ipc_mode', 'ipc') }}
  270. # Overwrite the default tcp ports used by the minion when in tcp mode
  271. {{ get_config('tcp_pub_port', '4510') }}
  272. {{ get_config('tcp_pull_port', '4511') }}
  273. # Passing very large events can cause the minion to consume large amounts of
  274. # memory. This value tunes the maximum size of a message allowed onto the
  275. # minion event bus. The value is expressed in bytes.
  276. {{ get_config('max_event_size', '1048576') }}
  277. # To detect failed master(s) and fire events on connect/disconnect, set
  278. # master_alive_interval to the number of seconds to poll the masters for
  279. # connection events.
  280. #
  281. {{ get_config('master_alive_interval', '30') }}
  282. # The minion can include configuration from other files. To enable this,
  283. # pass a list of paths to this option. The paths can be either relative or
  284. # absolute; if relative, they are considered to be relative to the directory
  285. # the main minion configuration file lives in (this file). Paths can make use
  286. # of shell-style globbing. If no files are matched by a path passed to this
  287. # option then the minion will log a warning message.
  288. #
  289. # Include a config file from some other path:
  290. {% if 'include' in cfg_minion -%}
  291. {% if isinstance(cfg_minion['include'], list) -%}
  292. include:
  293. {% for include in cfg_minion['include'] -%}
  294. - {{ include }}
  295. {% endfor -%}
  296. {% else -%}
  297. include: cfg_minion['include']
  298. {% endif -%}
  299. {% elif 'include' in cfg_salt -%}
  300. {% if isinstance(cfg_salt['include'], list) -%}
  301. include:
  302. {% for include in cfg_salt['include'] -%}
  303. - {{ include }}
  304. {% endfor -%}
  305. {% else -%}
  306. include: cfg_salt['include']
  307. {% endif -%}
  308. {% endif -%}
  309. ##### Minion module management #####
  310. ##########################################
  311. # Disable specific modules. This allows the admin to limit the level of
  312. # access the master has to the minion.
  313. {{ get_config('disable_modules', '[cmd,test]') }}
  314. {{ get_config('disable_returners', '[]') }}
  315. # Modules can be loaded from arbitrary paths. This enables the easy deployment
  316. # of third party modules. Modules for returners and minions can be loaded.
  317. # Specify a list of extra directories to search for minion modules and
  318. # returners. These paths must be fully qualified!
  319. {{ get_config('module_dirs', '[]') }}
  320. {{ get_config('returner_dirs', '[]') }}
  321. {{ get_config('states_dirs', '[]') }}
  322. {{ get_config('render_dirs', '[]') }}
  323. {{ get_config('utils_dirs', '[]') }}
  324. # A module provider can be statically overwritten or extended for the minion
  325. # via the providers option, in this case the default module will be
  326. # overwritten by the specified module. In this example the pkg module will
  327. # be provided by the yumpkg5 module instead of the system default.
  328. #providers:
  329. # pkg: yumpkg5
  330. {{ get_config('providers', '{}') }}
  331. # Enable Cython modules searching and loading. (Default: False)
  332. {{ get_config('cython_enable', 'False') }}
  333. # Specify a max size (in bytes) for modules on import. This feature is currently
  334. # only supported on *nix operating systems and requires psutil.
  335. {{ get_config('modules_max_memory', '-1') }}
  336. ##### State Management Settings #####
  337. ###########################################
  338. # The state management system executes all of the state templates on the minion
  339. # to enable more granular control of system state management. The type of
  340. # template and serialization used for state management needs to be configured
  341. # on the minion, the default renderer is yaml_jinja. This is a yaml file
  342. # rendered from a jinja template, the available options are:
  343. # yaml_jinja
  344. # yaml_mako
  345. # yaml_wempy
  346. # json_jinja
  347. # json_mako
  348. # json_wempy
  349. #
  350. {{ get_config('renderer', 'yaml_jinja') }}
  351. # The failhard option tells the minions to stop immediately after the first
  352. # failure detected in the state execution. Defaults to False.
  353. {{ get_config('failhard', 'False') }}
  354. # Reload the modules prior to a highstate run.
  355. {{ get_config('autoload_dynamic_modules', 'True') }}
  356. # clean_dynamic_modules keeps the dynamic modules on the minion in sync with
  357. # the dynamic modules on the master, this means that if a dynamic module is
  358. # not on the master it will be deleted from the minion. By default, this is
  359. # enabled and can be disabled by changing this value to False.
  360. {{ get_config('clean_dynamic_modules', 'True') }}
  361. # Normally, the minion is not isolated to any single environment on the master
  362. # when running states, but the environment can be isolated on the minion side
  363. # by statically setting it. Remember that the recommended way to manage
  364. # environments is to isolate via the top file.
  365. {{ get_config('environment', 'None') }}
  366. # If using the local file directory, then the state top file name needs to be
  367. # defined, by default this is top.sls.
  368. {{ get_config('state_top', 'top.sls') }}
  369. # Run states when the minion daemon starts. To enable, set startup_states to:
  370. # 'highstate' -- Execute state.highstate
  371. # 'sls' -- Read in the sls_list option and execute the named sls files
  372. # 'top' -- Read top_file option and execute based on that file on the Master
  373. {{ get_config('startup_states', "''") }}
  374. # List of states to run when the minion starts up if startup_states is 'sls':
  375. #sls_list:
  376. # - edit.vim
  377. # - hyper
  378. {{ get_config('sls_list', '[]') }}
  379. # Top file to execute if startup_states is 'top':
  380. {{ get_config('top_file', "''") }}
  381. # Automatically aggregate all states that have support for mod_aggregate by
  382. # setting to True. Or pass a list of state module names to automatically
  383. # aggregate just those types.
  384. #
  385. # state_aggregate:
  386. # - pkg
  387. #
  388. #state_aggregate: False
  389. {{ get_config('state_aggregate', '{}') }}
  390. ##### File Directory Settings #####
  391. ##########################################
  392. # The Salt Minion can redirect all file server operations to a local directory,
  393. # this allows for the same state tree that is on the master to be used if
  394. # copied completely onto the minion. This is a literal copy of the settings on
  395. # the master but used to reference a local directory on the minion.
  396. # Set the file client. The client defaults to looking on the master server for
  397. # files, but can be directed to look at the local file directory setting
  398. # defined below by setting it to "local". Setting a local file_client runs the
  399. # minion in masterless mode.
  400. {%- if standalone %}
  401. file_client: local
  402. {%- else %}
  403. {{ get_config('file_client', 'remote') }}
  404. {%- endif %}
  405. # The file directory works on environments passed to the minion, each environment
  406. # can have multiple root directories, the subdirectories in the multiple file
  407. # roots cannot match, otherwise the downloaded files will not be able to be
  408. # reliably ensured. A base environment is required to house the top file.
  409. # Example:
  410. # file_roots:
  411. # base:
  412. # - /srv/salt/
  413. # dev:
  414. # - /srv/salt/dev/services
  415. # - /srv/salt/dev/states
  416. # prod:
  417. # - /srv/salt/prod/services
  418. # - /srv/salt/prod/states
  419. {% if 'file_roots' in cfg_minion -%}
  420. {{ file_roots(cfg_minion['file_roots']) }}
  421. {%- elif 'file_roots' in cfg_salt -%}
  422. {{ file_roots(cfg_salt['file_roots']) }}
  423. {%- elif formulas|length -%}
  424. {{ file_roots({'base': ['/srv/salt']}) }}
  425. {%- endif %}
  426. # By default, the Salt fileserver recurses fully into all defined environments
  427. # to attempt to find files. To limit this behavior so that the fileserver only
  428. # traverses directories with SLS files and special Salt directories like _modules,
  429. # enable the option below. This might be useful for installations where a file root
  430. # has a very large number of files and performance is negatively impacted. Default
  431. # is False.
  432. {{ get_config('fileserver_limit_traversal', 'False') }}
  433. # The hash_type is the hash to use when discovering the hash of a file in
  434. # the local fileserver. The default is md5, but sha1, sha224, sha256, sha384
  435. # and sha512 are also supported.
  436. #
  437. # Warning: Prior to changing this value, the minion should be stopped and all
  438. # Salt caches should be cleared.
  439. {{ get_config('hash_type', 'md5') }}
  440. # gitfs provider
  441. {{ get_config('gitfs_provider', 'pygit2') }}
  442. # gitfs remotes
  443. {% if 'gitfs_remotes' in cfg_minion -%}
  444. gitfs_remotes:
  445. {%- for remote in cfg_minion['gitfs_remotes'] %}
  446. {%- if remote is iterable and remote is not string %}
  447. {%- for repo, children in remote.items() %}
  448. - {{ repo }}:
  449. {%- for child in children %}
  450. {%- for key, value in child.items() %}
  451. - {{ key }}: {{ value }}
  452. {%- endfor -%}
  453. {%- endfor -%}
  454. {%- endfor -%}
  455. {%- else %}
  456. - {{ remote }}
  457. {%- endif -%}
  458. {%- endfor -%}
  459. {%- endif %}
  460. # verify git ssl errors
  461. {{ get_config('gitfs_ssl_verify', 'True') }}
  462. # gitfs root dir
  463. {{ get_config('gitfs_root', 'somefolder/otherfolder') }}
  464. # The Salt pillar is searched for locally if file_client is set to local. If
  465. # this is the case, and pillar data is defined, then the pillar_roots need to
  466. # also be configured on the minion:
  467. {% if 'pillar_roots' in cfg_minion -%}
  468. pillar_roots:
  469. {%- for name, roots in cfg_minion['pillar_roots']|dictsort %}
  470. {{ name }}:
  471. {%- for dir in roots %}
  472. - {{ dir }}
  473. {%- endfor -%}
  474. {%- endfor -%}
  475. {% elif 'pillar_roots' in cfg_salt -%}
  476. pillar_roots:
  477. {%- for name, roots in cfg_salt['pillar_roots']|dictsort %}
  478. {{ name }}:
  479. {%- for dir in roots %}
  480. - {{ dir }}
  481. {%- endfor -%}
  482. {%- endfor -%}
  483. {%- endif %}
  484. ###### Security settings #####
  485. ###########################################
  486. # Enable "open mode", this mode still maintains encryption, but turns off
  487. # authentication, this is only intended for highly secure environments or for
  488. # the situation where your keys end up in a bad state. If you run in open mode
  489. # you do so at your own risk!
  490. {{ get_config('open_mode', 'False') }}
  491. # Enable permissive access to the salt keys. This allows you to run the
  492. # master or minion as root, but have a non-root group be given access to
  493. # your pki_dir. To make the access explicit, root must belong to the group
  494. # you've given access to. This is potentially quite insecure.
  495. {{ get_config('permissive_pki_access', 'False') }}
  496. # The state_verbose and state_output settings can be used to change the way
  497. # state system data is printed to the display. By default all data is printed.
  498. # The state_verbose setting can be set to True or False, when set to False
  499. # all data that has a result of True and no changes will be suppressed.
  500. {{ get_config('state_verbose', 'True') }}
  501. # The state_output setting changes if the output is the full multi line
  502. # output for each changed state if set to 'full', but if set to 'terse'
  503. # the output will be shortened to a single line.
  504. {{ get_config('state_output', 'full') }}
  505. # The state_output_diff setting changes whether or not the output from
  506. # successful states is returned. Useful when even the terse output of these
  507. # states is cluttering the logs. Set it to True to ignore them.
  508. {{ get_config('state_output_diff', 'False') }}
  509. # The state_output_profile setting changes whether profile information
  510. # will be shown for each state run.
  511. {{ get_config('state_output_profile', 'True') }}
  512. # Fingerprint of the master public key to validate the identity of your Salt master
  513. # before the initial key exchange. The master fingerprint can be found by running
  514. # "salt-key -F master" on the Salt master.
  515. {{ get_config('master_finger', "''") }}
  516. ###### Thread settings #####
  517. ###########################################
  518. # Disable multiprocessing support, by default when a minion receives a
  519. # publication a new process is spawned and the command is executed therein.
  520. {{ get_config('multiprocessing', 'True') }}
  521. ##### Logging settings #####
  522. ##########################################
  523. # The location of the minion log file
  524. # The minion log can be sent to a regular file, local path name, or network
  525. # location. Remote logging works best when configured to use rsyslogd(8) (e.g.:
  526. # ``file:///dev/log``), with rsyslogd(8) configured for network logging. The URI
  527. # format is: <file|udp|tcp>://<host|socketpath>:<port-if-required>/<log-facility>
  528. #log_file: /var/log/salt/minion
  529. #log_file: file:///dev/log
  530. #log_file: udp://loghost:10514
  531. #
  532. {{ get_config('log_file', '/var/log/salt/minion') }}
  533. {{ get_config('key_logfile', ' /var/log/salt/key') }}
  534. # The level of messages to send to the console.
  535. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  536. #
  537. # The following log levels are considered INSECURE and may log sensitive data:
  538. # ['garbage', 'trace', 'debug']
  539. #
  540. # Default: 'warning'
  541. {{ get_config('log_level', 'warning') }}
  542. # The level of messages to send to the log file.
  543. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  544. # If using 'log_granular_levels' this must be set to the highest desired level.
  545. # Default: 'warning'
  546. {{ get_config('log_level_logfile', '') }}
  547. # The date and time format used in log messages. Allowed date/time formating
  548. # can be seen here: http://docs.python.org/library/time.html#time.strftime
  549. {{ get_config('log_datefmt', "'%H:%M:%S'") }}
  550. {{ get_config('log_datefmt_logfile', "'%Y-%m-%d %H:%M:%S'") }}
  551. # The format of the console logging messages. Allowed formatting options can
  552. # be seen here: http://docs.python.org/library/logging.html#logrecord-attributes
  553. #
  554. # Console log colors are specified by these additional formatters:
  555. #
  556. # %(colorlevel)s
  557. # %(colorname)s
  558. # %(colorprocess)s
  559. # %(colormsg)s
  560. #
  561. # Since it is desirable to include the surrounding brackets, '[' and ']', in
  562. # the coloring of the messages, these color formatters also include padding as
  563. # well. Color LogRecord attributes are only available for console logging.
  564. #
  565. {{ get_config('log_fmt_console', "'%(colorlevel)s %(colormsg)s'") }}
  566. {{ get_config('log_fmt_console', "'[%(levelname)-8s] %(message)s'") }}
  567. #
  568. {{ get_config('log_fmt_logfile', "'%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] %(message)s'") }}
  569. # This can be used to control logging levels more specificically. This
  570. # example sets the main salt library at the 'warning' level, but sets
  571. # 'salt.modules' to log at the 'debug' level:
  572. # log_granular_levels:
  573. # 'salt': 'warning'
  574. # 'salt.modules': 'debug'
  575. #
  576. {{ get_config('log_granular_levels', '{}') }}
  577. # To diagnose issues with minions disconnecting or missing returns, ZeroMQ
  578. # supports the use of monitor sockets to log connection events. This
  579. # feature requires ZeroMQ 4.0 or higher.
  580. #
  581. # To enable ZeroMQ monitor sockets, set 'zmq_monitor' to 'True' and log at a
  582. # debug level or higher.
  583. #
  584. # A sample log event is as follows:
  585. #
  586. # [DEBUG ] ZeroMQ event: {'endpoint': 'tcp://127.0.0.1:4505', 'event': 512,
  587. # 'value': 27, 'description': 'EVENT_DISCONNECTED'}
  588. #
  589. # All events logged will include the string 'ZeroMQ event'. A connection event
  590. # should be logged as the minion starts up and initially connects to the
  591. # master. If not, check for debug log level and that the necessary version of
  592. # ZeroMQ is installed.
  593. #
  594. {{ get_config('zmq_monitor', 'False') }}
  595. ###### Module configuration #####
  596. ###########################################
  597. # Salt allows for modules to be passed arbitrary configuration data, any data
  598. # passed here in valid yaml format will be passed on to the salt minion modules
  599. # for use. It is STRONGLY recommended that a naming convention be used in which
  600. # the module name is followed by a . and then the value. Also, all top level
  601. # data must be applied via the yaml dict construct, some examples:
  602. #
  603. # You can specify that all modules should run in test mode:
  604. {{ get_config('test', 'True') }}
  605. # A simple value for the test module:
  606. #test.foo: foo
  607. #
  608. # A list for the test module:
  609. #test.bar: [baz,quo]
  610. #
  611. # A dict for the test module:
  612. #test.baz: {spam: sausage, cheese: bread}
  613. #
  614. #
  615. ###### Update settings ######
  616. ###########################################
  617. # Using the features in Esky, a salt minion can both run as a frozen app and
  618. # be updated on the fly. These options control how the update process
  619. # (saltutil.update()) behaves.
  620. #
  621. # The url for finding and downloading updates. Disabled by default.
  622. {{ get_config('update_url', 'False') }}
  623. #
  624. # The list of services to restart after a successful update. Empty by default.
  625. {{ get_config('update_restart_services', '[]') }}
  626. ###### Keepalive settings ######
  627. ############################################
  628. # ZeroMQ now includes support for configuring SO_KEEPALIVE if supported by
  629. # the OS. If connections between the minion and the master pass through
  630. # a state tracking device such as a firewall or VPN gateway, there is
  631. # the risk that it could tear down the connection the master and minion
  632. # without informing either party that their connection has been taken away.
  633. # Enabling TCP Keepalives prevents this from happening.
  634. # Overall state of TCP Keepalives, enable (1 or True), disable (0 or False)
  635. # or leave to the OS defaults (-1), on Linux, typically disabled. Default True, enabled.
  636. {{ get_config('tcp_keepalive', 'True') }}
  637. # How long before the first keepalive should be sent in seconds. Default 300
  638. # to send the first keepalive after 5 minutes, OS default (-1) is typically 7200 seconds
  639. # on Linux see /proc/sys/net/ipv4/tcp_keepalive_time.
  640. {{ get_config('tcp_keepalive_idle', '300') }}
  641. # How many lost probes are needed to consider the connection lost. Default -1
  642. # to use OS defaults, typically 9 on Linux, see /proc/sys/net/ipv4/tcp_keepalive_probes.
  643. {{ get_config('tcp_keepalive_cnt', '-1') }}
  644. # How often, in seconds, to send keepalives after the first one. Default -1 to
  645. # use OS defaults, typically 75 seconds on Linux, see
  646. # /proc/sys/net/ipv4/tcp_keepalive_intvl.
  647. {{ get_config('tcp_keepalive_intvl', '-1') }}
  648. ###### Windows Software settings ######
  649. ############################################
  650. # Location of the repository cache file on the master:
  651. {{ get_config('win_repo_cachefile', 'salt://win/repo/winrepo.p') }}
  652. ###### Returner settings ######
  653. ############################################
  654. # Which returner(s) will be used for minion's result:
  655. {{ get_config('return', '') }}
  656. ###### Miscellaneous settings ######
  657. ############################################
  658. # Default match type for filtering events tags: startswith, endswith, find, regex, fnmatch
  659. #event_match_type: startswith
  660. {{ get_config('event_match_type', 'startswith') }}