master 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231
  1. ##### Primary configuration settings #####
  2. ##########################################
  3. # This configuration file is used to manage the behavior of the Salt Master.
  4. # Values that are commented out but have an empty line after the comment are
  5. # defaults that do not need to be set in the config. If there is no blank line
  6. # after the comment then the value is presented as an example and is not the
  7. # default.
  8. # Per default, the master will automatically include all config files
  9. # from master.d/*.conf (master.d is a directory in the same directory
  10. # as the main master config file).
  11. #default_include: master.d/*.conf
  12. # The address of the interface to bind to:
  13. #interface: 0.0.0.0
  14. # Whether the master should listen for IPv6 connections. If this is set to True,
  15. # the interface option must be adjusted, too. (For example: "interface: '::'")
  16. #ipv6: False
  17. # The tcp port used by the publisher:
  18. #publish_port: 4505
  19. # The user under which the salt master will run. Salt will update all
  20. # permissions to allow the specified user to run the master. The exception is
  21. # the job cache, which must be deleted if this user is changed. If the
  22. # modified files cause conflicts, set verify_env to False.
  23. user: salt
  24. syndic_user: salt
  25. # The port used by the communication interface. The ret (return) port is the
  26. # interface used for the file server, authentication, job returns, etc.
  27. #ret_port: 4506
  28. # Specify the location of the daemon process ID file:
  29. #pidfile: /var/run/salt-master.pid
  30. # The root directory prepended to these options: pki_dir, cachedir,
  31. # sock_dir, log_file, autosign_file, autoreject_file, extension_modules,
  32. # key_logfile, pidfile, autosign_grains_dir:
  33. #root_dir: /
  34. # The path to the master's configuration file.
  35. #conf_file: /etc/salt/master
  36. # Directory used to store public key data:
  37. #pki_dir: /etc/salt/pki/master
  38. # Key cache. Increases master speed for large numbers of accepted
  39. # keys. Available options: 'sched'. (Updates on a fixed schedule.)
  40. # Note that enabling this feature means that minions will not be
  41. # available to target for up to the length of the maintanence loop
  42. # which by default is 60s.
  43. #key_cache: ''
  44. # Directory to store job and cache data:
  45. # This directory may contain sensitive data and should be protected accordingly.
  46. #
  47. #cachedir: /var/cache/salt/master
  48. # Directory for custom modules. This directory can contain subdirectories for
  49. # each of Salt's module types such as "runners", "output", "wheel", "modules",
  50. # "states", "returners", etc.
  51. #extension_modules: <no default>
  52. # Directory for custom modules. This directory can contain subdirectories for
  53. # each of Salt's module types such as "runners", "output", "wheel", "modules",
  54. # "states", "returners", "engines", etc.
  55. # Like 'extension_modules' but can take an array of paths
  56. #module_dirs: <no default>
  57. # - /var/cache/salt/minion/extmods
  58. # Verify and set permissions on configuration directories at startup:
  59. #verify_env: True
  60. # Set the number of hours to keep old job information in the job cache:
  61. #keep_jobs: 24
  62. # The number of seconds to wait when the client is requesting information
  63. # about running jobs.
  64. #gather_job_timeout: 10
  65. # Set the default timeout for the salt command and api. The default is 5
  66. # seconds.
  67. #timeout: 5
  68. # The loop_interval option controls the seconds for the master's maintenance
  69. # process check cycle. This process updates file server backends, cleans the
  70. # job cache and executes the scheduler.
  71. #loop_interval: 60
  72. # Set the default outputter used by the salt command. The default is "nested".
  73. #output: nested
  74. # To set a list of additional directories to search for salt outputters, set the
  75. # outputter_dirs option.
  76. #outputter_dirs: []
  77. # Set the default output file used by the salt command. Default is to output
  78. # to the CLI and not to a file. Functions the same way as the "--out-file"
  79. # CLI option, only sets this to a single file for all salt commands.
  80. #output_file: None
  81. # Return minions that timeout when running commands like test.ping
  82. #show_timeout: True
  83. # Tell the client to display the jid when a job is published.
  84. #show_jid: False
  85. # By default, output is colored. To disable colored output, set the color value
  86. # to False.
  87. #color: True
  88. # Do not strip off the colored output from nested results and state outputs
  89. # (true by default).
  90. # strip_colors: False
  91. # To display a summary of the number of minions targeted, the number of
  92. # minions returned, and the number of minions that did not return, set the
  93. # cli_summary value to True. (False by default.)
  94. #
  95. #cli_summary: False
  96. # Set the directory used to hold unix sockets:
  97. #sock_dir: /var/run/salt/master
  98. # The master can take a while to start up when lspci and/or dmidecode is used
  99. # to populate the grains for the master. Enable if you want to see GPU hardware
  100. # data for your master.
  101. # enable_gpu_grains: False
  102. # The master maintains a job cache. While this is a great addition, it can be
  103. # a burden on the master for larger deployments (over 5000 minions).
  104. # Disabling the job cache will make previously executed jobs unavailable to
  105. # the jobs system and is not generally recommended.
  106. #job_cache: True
  107. # Cache minion grains, pillar and mine data via the cache subsystem in the
  108. # cachedir or a database.
  109. #minion_data_cache: True
  110. # Cache subsystem module to use for minion data cache.
  111. #cache: localfs
  112. # Enables a fast in-memory cache booster and sets the expiration time.
  113. #memcache_expire_seconds: 0
  114. # Set a memcache limit in items (bank + key) per cache storage (driver + driver_opts).
  115. #memcache_max_items: 1024
  116. # Each time a cache storage got full cleanup all the expired items not just the oldest one.
  117. #memcache_full_cleanup: False
  118. # Enable collecting the memcache stats and log it on `debug` log level.
  119. #memcache_debug: False
  120. # Store all returns in the given returner.
  121. # Setting this option requires that any returner-specific configuration also
  122. # be set. See various returners in salt/returners for details on required
  123. # configuration values. (See also, event_return_queue below.)
  124. #
  125. #event_return: mysql
  126. # On busy systems, enabling event_returns can cause a considerable load on
  127. # the storage system for returners. Events can be queued on the master and
  128. # stored in a batched fashion using a single transaction for multiple events.
  129. # By default, events are not queued.
  130. #event_return_queue: 0
  131. # Only return events matching tags in a whitelist, supports glob matches.
  132. #event_return_whitelist:
  133. # - salt/master/a_tag
  134. # - salt/run/*/ret
  135. # Store all event returns **except** the tags in a blacklist, supports globs.
  136. #event_return_blacklist:
  137. # - salt/master/not_this_tag
  138. # - salt/wheel/*/ret
  139. # Passing very large events can cause the minion to consume large amounts of
  140. # memory. This value tunes the maximum size of a message allowed onto the
  141. # master event bus. The value is expressed in bytes.
  142. #max_event_size: 1048576
  143. # By default, the master AES key rotates every 24 hours. The next command
  144. # following a key rotation will trigger a key refresh from the minion which may
  145. # result in minions which do not respond to the first command after a key refresh.
  146. #
  147. # To tell the master to ping all minions immediately after an AES key refresh, set
  148. # ping_on_rotate to True. This should mitigate the issue where a minion does not
  149. # appear to initially respond after a key is rotated.
  150. #
  151. # Note that ping_on_rotate may cause high load on the master immediately after
  152. # the key rotation event as minions reconnect. Consider this carefully if this
  153. # salt master is managing a large number of minions.
  154. #
  155. # If disabled, it is recommended to handle this event by listening for the
  156. # 'aes_key_rotate' event with the 'key' tag and acting appropriately.
  157. # ping_on_rotate: False
  158. # By default, the master deletes its cache of minion data when the key for that
  159. # minion is removed. To preserve the cache after key deletion, set
  160. # 'preserve_minion_cache' to True.
  161. #
  162. # WARNING: This may have security implications if compromised minions auth with
  163. # a previous deleted minion ID.
  164. #preserve_minion_cache: False
  165. # Allow or deny minions from requesting their own key revocation
  166. #allow_minion_key_revoke: True
  167. # If max_minions is used in large installations, the master might experience
  168. # high-load situations because of having to check the number of connected
  169. # minions for every authentication. This cache provides the minion-ids of
  170. # all connected minions to all MWorker-processes and greatly improves the
  171. # performance of max_minions.
  172. # con_cache: False
  173. # The master can include configuration from other files. To enable this,
  174. # pass a list of paths to this option. The paths can be either relative or
  175. # absolute; if relative, they are considered to be relative to the directory
  176. # the main master configuration file lives in (this file). Paths can make use
  177. # of shell-style globbing. If no files are matched by a path passed to this
  178. # option, then the master will log a warning message.
  179. #
  180. # Include a config file from some other path:
  181. # include: /etc/salt/extra_config
  182. #
  183. # Include config from several files and directories:
  184. # include:
  185. # - /etc/salt/extra_config
  186. ##### Large-scale tuning settings #####
  187. ##########################################
  188. # Max open files
  189. #
  190. # Each minion connecting to the master uses AT LEAST one file descriptor, the
  191. # master subscription connection. If enough minions connect you might start
  192. # seeing on the console (and then salt-master crashes):
  193. # Too many open files (tcp_listener.cpp:335)
  194. # Aborted (core dumped)
  195. #
  196. # By default this value will be the one of `ulimit -Hn`, ie, the hard limit for
  197. # max open files.
  198. #
  199. # If you wish to set a different value than the default one, uncomment and
  200. # configure this setting. Remember that this value CANNOT be higher than the
  201. # hard limit. Raising the hard limit depends on your OS and/or distribution,
  202. # a good way to find the limit is to search the internet. For example:
  203. # raise max open files hard limit debian
  204. #
  205. #max_open_files: 100000
  206. # The number of worker threads to start. These threads are used to manage
  207. # return calls made from minions to the master. If the master seems to be
  208. # running slowly, increase the number of threads. This setting can not be
  209. # set lower than 3.
  210. #worker_threads: 5
  211. # Set the ZeroMQ high water marks
  212. # http://api.zeromq.org/3-2:zmq-setsockopt
  213. # The listen queue size / backlog
  214. #zmq_backlog: 1000
  215. # The publisher interface ZeroMQPubServerChannel
  216. #pub_hwm: 1000
  217. # The master may allocate memory per-event and not
  218. # reclaim it.
  219. # To set a high-water mark for memory allocation, use
  220. # ipc_write_buffer to set a high-water mark for message
  221. # buffering.
  222. # Value: In bytes. Set to 'dynamic' to have Salt select
  223. # a value for you. Default is disabled.
  224. # ipc_write_buffer: 'dynamic'
  225. ##### Security settings #####
  226. ##########################################
  227. # Enable "open mode", this mode still maintains encryption, but turns off
  228. # authentication, this is only intended for highly secure environments or for
  229. # the situation where your keys end up in a bad state. If you run in open mode
  230. # you do so at your own risk!
  231. #open_mode: False
  232. # Enable auto_accept, this setting will automatically accept all incoming
  233. # public keys from the minions. Note that this is insecure.
  234. #auto_accept: False
  235. # Time in minutes that an incoming public key with a matching name found in
  236. # pki_dir/minion_autosign/keyid is automatically accepted. Expired autosign keys
  237. # are removed when the master checks the minion_autosign directory.
  238. # 0 equals no timeout
  239. # autosign_timeout: 120
  240. # If the autosign_file is specified, incoming keys specified in the
  241. # autosign_file will be automatically accepted. This is insecure. Regular
  242. # expressions as well as globing lines are supported. The file must be readonly
  243. # except for the owner. Use permissive_pki_access to allow the group write access.
  244. #autosign_file: /etc/salt/autosign.conf
  245. # Works like autosign_file, but instead allows you to specify minion IDs for
  246. # which keys will automatically be rejected. Will override both membership in
  247. # the autosign_file and the auto_accept setting.
  248. #autoreject_file: /etc/salt/autoreject.conf
  249. # If the autosign_grains_dir is specified, incoming keys from minons with grain
  250. # values matching those defined in files in this directory will be accepted
  251. # automatically. This is insecure. Minions need to be configured to send the grains.
  252. #autosign_grains_dir: /etc/salt/autosign_grains
  253. # Enable permissive access to the salt keys. This allows you to run the
  254. # master or minion as root, but have a non-root group be given access to
  255. # your pki_dir. To make the access explicit, root must belong to the group
  256. # you've given access to. This is potentially quite insecure. If an autosign_file
  257. # is specified, enabling permissive_pki_access will allow group access to that
  258. # specific file.
  259. #permissive_pki_access: False
  260. # Allow users on the master access to execute specific commands on minions.
  261. # This setting should be treated with care since it opens up execution
  262. # capabilities to non root users. By default this capability is completely
  263. # disabled.
  264. #publisher_acl:
  265. # larry:
  266. # - test.ping
  267. # - network.*
  268. #
  269. # Blacklist any of the following users or modules
  270. #
  271. # This example would blacklist all non sudo users, including root from
  272. # running any commands. It would also blacklist any use of the "cmd"
  273. # module. This is completely disabled by default.
  274. #
  275. #
  276. # Check the list of configured users in client ACL against users on the
  277. # system and throw errors if they do not exist.
  278. #client_acl_verify: True
  279. #
  280. #publisher_acl_blacklist:
  281. # users:
  282. # - root
  283. # - '^(?!sudo_).*$' # all non sudo users
  284. # modules:
  285. # - cmd
  286. # Enforce publisher_acl & publisher_acl_blacklist when users have sudo
  287. # access to the salt command.
  288. #
  289. #sudo_acl: False
  290. # The external auth system uses the Salt auth modules to authenticate and
  291. # validate users to access areas of the Salt system.
  292. #external_auth:
  293. # pam:
  294. # fred:
  295. # - test.*
  296. #
  297. # Time (in seconds) for a newly generated token to live. Default: 12 hours
  298. #token_expire: 43200
  299. #
  300. # Allow eauth users to specify the expiry time of the tokens they generate.
  301. # A boolean applies to all users or a dictionary of whitelisted eauth backends
  302. # and usernames may be given.
  303. # token_expire_user_override:
  304. # pam:
  305. # - fred
  306. # - tom
  307. # ldap:
  308. # - gary
  309. #
  310. #token_expire_user_override: False
  311. # Set to True to enable keeping the calculated user's auth list in the token
  312. # file. This is disabled by default and the auth list is calculated or requested
  313. # from the eauth driver each time.
  314. #keep_acl_in_token: False
  315. # Auth subsystem module to use to get authorized access list for a user. By default it's
  316. # the same module used for external authentication.
  317. #eauth_acl_module: django
  318. # Allow minions to push files to the master. This is disabled by default, for
  319. # security purposes.
  320. #file_recv: False
  321. # Set a hard-limit on the size of the files that can be pushed to the master.
  322. # It will be interpreted as megabytes. Default: 100
  323. #file_recv_max_size: 100
  324. # Signature verification on messages published from the master.
  325. # This causes the master to cryptographically sign all messages published to its event
  326. # bus, and minions then verify that signature before acting on the message.
  327. #
  328. # This is False by default.
  329. #
  330. # Note that to facilitate interoperability with masters and minions that are different
  331. # versions, if sign_pub_messages is True but a message is received by a minion with
  332. # no signature, it will still be accepted, and a warning message will be logged.
  333. # Conversely, if sign_pub_messages is False, but a minion receives a signed
  334. # message it will be accepted, the signature will not be checked, and a warning message
  335. # will be logged. This behavior went away in Salt 2014.1.0 and these two situations
  336. # will cause minion to throw an exception and drop the message.
  337. # sign_pub_messages: False
  338. # Signature verification on messages published from minions
  339. # This requires that minions cryptographically sign the messages they
  340. # publish to the master. If minions are not signing, then log this information
  341. # at loglevel 'INFO' and drop the message without acting on it.
  342. # require_minion_sign_messages: False
  343. # The below will drop messages when their signatures do not validate.
  344. # Note that when this option is False but `require_minion_sign_messages` is True
  345. # minions MUST sign their messages but the validity of their signatures
  346. # is ignored.
  347. # These two config options exist so a Salt infrastructure can be moved
  348. # to signing minion messages gradually.
  349. # drop_messages_signature_fail: False
  350. # Use TLS/SSL encrypted connection between master and minion.
  351. # Can be set to a dictionary containing keyword arguments corresponding to Python's
  352. # 'ssl.wrap_socket' method.
  353. # Default is None.
  354. #ssl:
  355. # keyfile: <path_to_keyfile>
  356. # certfile: <path_to_certfile>
  357. # ssl_version: PROTOCOL_TLSv1_2
  358. ##### Salt-SSH Configuration #####
  359. ##########################################
  360. # Define the default salt-ssh roster module to use
  361. #roster: flat
  362. # Pass in an alternative location for the salt-ssh `flat` roster file
  363. #roster_file: /etc/salt/roster
  364. # Define locations for `flat` roster files so they can be chosen when using Salt API.
  365. # An administrator can place roster files into these locations. Then when
  366. # calling Salt API, parameter 'roster_file' should contain a relative path to
  367. # these locations. That is, "roster_file=/foo/roster" will be resolved as
  368. # "/etc/salt/roster.d/foo/roster" etc. This feature prevents passing insecure
  369. # custom rosters through the Salt API.
  370. #
  371. #rosters:
  372. # - /etc/salt/roster.d
  373. # - /opt/salt/some/more/rosters
  374. # The ssh password to log in with.
  375. #ssh_passwd: ''
  376. #The target system's ssh port number.
  377. #ssh_port: 22
  378. # Comma-separated list of ports to scan.
  379. #ssh_scan_ports: 22
  380. # Scanning socket timeout for salt-ssh.
  381. #ssh_scan_timeout: 0.01
  382. # Boolean to run command via sudo.
  383. #ssh_sudo: False
  384. # Number of seconds to wait for a response when establishing an SSH connection.
  385. #ssh_timeout: 60
  386. # The user to log in as.
  387. #ssh_user: root
  388. # The log file of the salt-ssh command:
  389. #ssh_log_file: /var/log/salt/ssh
  390. # Pass in minion option overrides that will be inserted into the SHIM for
  391. # salt-ssh calls. The local minion config is not used for salt-ssh. Can be
  392. # overridden on a per-minion basis in the roster (`minion_opts`)
  393. #ssh_minion_opts:
  394. # gpg_keydir: /root/gpg
  395. # Set this to True to default to using ~/.ssh/id_rsa for salt-ssh
  396. # authentication with minions
  397. #ssh_use_home_key: False
  398. # Set this to True to default salt-ssh to run with ``-o IdentitiesOnly=yes``.
  399. # This option is intended for situations where the ssh-agent offers many
  400. # different identities and allows ssh to ignore those identities and use the
  401. # only one specified in options.
  402. #ssh_identities_only: False
  403. # List-only nodegroups for salt-ssh. Each group must be formed as either a
  404. # comma-separated list, or a YAML list. This option is useful to group minions
  405. # into easy-to-target groups when using salt-ssh. These groups can then be
  406. # targeted with the normal -N argument to salt-ssh.
  407. #ssh_list_nodegroups: {}
  408. ##### Master Module Management #####
  409. ##########################################
  410. # Manage how master side modules are loaded.
  411. # Add any additional locations to look for master runners:
  412. #runner_dirs: []
  413. # Enable Cython for master side modules:
  414. #cython_enable: False
  415. ##### State System settings #####
  416. ##########################################
  417. # The state system uses a "top" file to tell the minions what environment to
  418. # use and what modules to use. The state_top file is defined relative to the
  419. # root of the base environment as defined in "File Server settings" below.
  420. #state_top: top.sls
  421. # The master_tops option replaces the external_nodes option by creating
  422. # a plugable system for the generation of external top data. The external_nodes
  423. # option is deprecated by the master_tops option.
  424. #
  425. # To gain the capabilities of the classic external_nodes system, use the
  426. # following configuration:
  427. # master_tops:
  428. # ext_nodes: <Shell command which returns yaml>
  429. #
  430. #master_tops: {}
  431. # The renderer to use on the minions to render the state data
  432. #renderer: yaml_jinja
  433. # Default Jinja environment options for all templates except sls templates
  434. #jinja_env:
  435. # block_start_string: '{%'
  436. # block_end_string: '%}'
  437. # variable_start_string: '{{'
  438. # variable_end_string: '}}'
  439. # comment_start_string: '{#'
  440. # comment_end_string: '#}'
  441. # line_statement_prefix:
  442. # line_comment_prefix:
  443. # trim_blocks: False
  444. # lstrip_blocks: False
  445. # newline_sequence: '\n'
  446. # keep_trailing_newline: False
  447. # Jinja environment options for sls templates
  448. #jinja_sls_env:
  449. # block_start_string: '{%'
  450. # block_end_string: '%}'
  451. # variable_start_string: '{{'
  452. # variable_end_string: '}}'
  453. # comment_start_string: '{#'
  454. # comment_end_string: '#}'
  455. # line_statement_prefix:
  456. # line_comment_prefix:
  457. # trim_blocks: False
  458. # lstrip_blocks: False
  459. # newline_sequence: '\n'
  460. # keep_trailing_newline: False
  461. # The failhard option tells the minions to stop immediately after the first
  462. # failure detected in the state execution, defaults to False
  463. #failhard: False
  464. # The state_verbose and state_output settings can be used to change the way
  465. # state system data is printed to the display. By default all data is printed.
  466. # The state_verbose setting can be set to True or False, when set to False
  467. # all data that has a result of True and no changes will be suppressed.
  468. #state_verbose: True
  469. # The state_output setting controls which results will be output full multi line
  470. # full, terse - each state will be full/terse
  471. # mixed - only states with errors will be full
  472. # changes - states with changes and errors will be full
  473. # full_id, mixed_id, changes_id and terse_id are also allowed;
  474. # when set, the state ID will be used as name in the output
  475. #state_output: full
  476. # The state_output_diff setting changes whether or not the output from
  477. # successful states is returned. Useful when even the terse output of these
  478. # states is cluttering the logs. Set it to True to ignore them.
  479. #state_output_diff: False
  480. # Automatically aggregate all states that have support for mod_aggregate by
  481. # setting to 'True'. Or pass a list of state module names to automatically
  482. # aggregate just those types.
  483. #
  484. # state_aggregate:
  485. # - pkg
  486. #
  487. #state_aggregate: False
  488. # Send progress events as each function in a state run completes execution
  489. # by setting to 'True'. Progress events are in the format
  490. # 'salt/job/<JID>/prog/<MID>/<RUN NUM>'.
  491. #state_events: False
  492. ##### File Server settings #####
  493. ##########################################
  494. # Salt runs a lightweight file server written in zeromq to deliver files to
  495. # minions. This file server is built into the master daemon and does not
  496. # require a dedicated port.
  497. # The file server works on environments passed to the master, each environment
  498. # can have multiple root directories, the subdirectories in the multiple file
  499. # roots cannot match, otherwise the downloaded files will not be able to be
  500. # reliably ensured. A base environment is required to house the top file.
  501. # Example:
  502. # file_roots:
  503. # base:
  504. # - /srv/salt/
  505. # dev:
  506. # - /srv/salt/dev/services
  507. # - /srv/salt/dev/states
  508. # prod:
  509. # - /srv/salt/prod/services
  510. # - /srv/salt/prod/states
  511. #
  512. #file_roots:
  513. # base:
  514. # - /srv/salt
  515. #
  516. # The master_roots setting configures a master-only copy of the file_roots dictionary,
  517. # used by the state compiler.
  518. #master_roots: /srv/salt-master
  519. # When using multiple environments, each with their own top file, the
  520. # default behaviour is an unordered merge. To prevent top files from
  521. # being merged together and instead to only use the top file from the
  522. # requested environment, set this value to 'same'.
  523. #top_file_merging_strategy: merge
  524. # To specify the order in which environments are merged, set the ordering
  525. # in the env_order option. Given a conflict, the last matching value will
  526. # win.
  527. #env_order: ['base', 'dev', 'prod']
  528. # If top_file_merging_strategy is set to 'same' and an environment does not
  529. # contain a top file, the top file in the environment specified by default_top
  530. # will be used instead.
  531. #default_top: base
  532. # The hash_type is the hash to use when discovering the hash of a file on
  533. # the master server. The default is sha256, but md5, sha1, sha224, sha384 and
  534. # sha512 are also supported.
  535. #
  536. # WARNING: While md5 and sha1 are also supported, do not use them due to the
  537. # high chance of possible collisions and thus security breach.
  538. #
  539. # Prior to changing this value, the master should be stopped and all Salt
  540. # caches should be cleared.
  541. #hash_type: sha256
  542. # The buffer size in the file server can be adjusted here:
  543. #file_buffer_size: 1048576
  544. # A regular expression (or a list of expressions) that will be matched
  545. # against the file path before syncing the modules and states to the minions.
  546. # This includes files affected by the file.recurse state.
  547. # For example, if you manage your custom modules and states in subversion
  548. # and don't want all the '.svn' folders and content synced to your minions,
  549. # you could set this to '/\.svn($|/)'. By default nothing is ignored.
  550. #file_ignore_regex:
  551. # - '/\.svn($|/)'
  552. # - '/\.git($|/)'
  553. # A file glob (or list of file globs) that will be matched against the file
  554. # path before syncing the modules and states to the minions. This is similar
  555. # to file_ignore_regex above, but works on globs instead of regex. By default
  556. # nothing is ignored.
  557. # file_ignore_glob:
  558. # - '*.pyc'
  559. # - '*/somefolder/*.bak'
  560. # - '*.swp'
  561. # File Server Backend
  562. #
  563. # Salt supports a modular fileserver backend system, this system allows
  564. # the salt master to link directly to third party systems to gather and
  565. # manage the files available to minions. Multiple backends can be
  566. # configured and will be searched for the requested file in the order in which
  567. # they are defined here. The default setting only enables the standard backend
  568. # "roots" which uses the "file_roots" option.
  569. #fileserver_backend:
  570. # - roots
  571. #
  572. # To use multiple backends list them in the order they are searched:
  573. #fileserver_backend:
  574. # - git
  575. # - roots
  576. #
  577. # Uncomment the line below if you do not want the file_server to follow
  578. # symlinks when walking the filesystem tree. This is set to True
  579. # by default. Currently this only applies to the default roots
  580. # fileserver_backend.
  581. #fileserver_followsymlinks: False
  582. #
  583. # Uncomment the line below if you do not want symlinks to be
  584. # treated as the files they are pointing to. By default this is set to
  585. # False. By uncommenting the line below, any detected symlink while listing
  586. # files on the Master will not be returned to the Minion.
  587. #fileserver_ignoresymlinks: True
  588. #
  589. # By default, the Salt fileserver recurses fully into all defined environments
  590. # to attempt to find files. To limit this behavior so that the fileserver only
  591. # traverses directories with SLS files and special Salt directories like _modules,
  592. # enable the option below. This might be useful for installations where a file root
  593. # has a very large number of files and performance is impacted. Default is False.
  594. # fileserver_limit_traversal: False
  595. #
  596. # The fileserver can fire events off every time the fileserver is updated,
  597. # these are disabled by default, but can be easily turned on by setting this
  598. # flag to True
  599. #fileserver_events: False
  600. # Git File Server Backend Configuration
  601. #
  602. # Optional parameter used to specify the provider to be used for gitfs. Must be
  603. # either pygit2 or gitpython. If unset, then both will be tried (in that
  604. # order), and the first one with a compatible version installed will be the
  605. # provider that is used.
  606. #
  607. #gitfs_provider: pygit2
  608. # Along with gitfs_password, is used to authenticate to HTTPS remotes.
  609. # gitfs_user: ''
  610. # Along with gitfs_user, is used to authenticate to HTTPS remotes.
  611. # This parameter is not required if the repository does not use authentication.
  612. #gitfs_password: ''
  613. # By default, Salt will not authenticate to an HTTP (non-HTTPS) remote.
  614. # This parameter enables authentication over HTTP. Enable this at your own risk.
  615. #gitfs_insecure_auth: False
  616. # Along with gitfs_privkey (and optionally gitfs_passphrase), is used to
  617. # authenticate to SSH remotes. This parameter (or its per-remote counterpart)
  618. # is required for SSH remotes.
  619. #gitfs_pubkey: ''
  620. # Along with gitfs_pubkey (and optionally gitfs_passphrase), is used to
  621. # authenticate to SSH remotes. This parameter (or its per-remote counterpart)
  622. # is required for SSH remotes.
  623. #gitfs_privkey: ''
  624. # This parameter is optional, required only when the SSH key being used to
  625. # authenticate is protected by a passphrase.
  626. #gitfs_passphrase: ''
  627. # When using the git fileserver backend at least one git remote needs to be
  628. # defined. The user running the salt master will need read access to the repo.
  629. #
  630. # The repos will be searched in order to find the file requested by a client
  631. # and the first repo to have the file will return it.
  632. # When using the git backend branches and tags are translated into salt
  633. # environments.
  634. # Note: file:// repos will be treated as a remote, so refs you want used must
  635. # exist in that repo as *local* refs.
  636. #gitfs_remotes:
  637. # - git://github.com/saltstack/salt-states.git
  638. # - file:///var/git/saltmaster
  639. #
  640. # The gitfs_ssl_verify option specifies whether to ignore ssl certificate
  641. # errors when contacting the gitfs backend. You might want to set this to
  642. # false if you're using a git backend that uses a self-signed certificate but
  643. # keep in mind that setting this flag to anything other than the default of True
  644. # is a security concern, you may want to try using the ssh transport.
  645. #gitfs_ssl_verify: True
  646. #
  647. # The gitfs_root option gives the ability to serve files from a subdirectory
  648. # within the repository. The path is defined relative to the root of the
  649. # repository and defaults to the repository root.
  650. #gitfs_root: somefolder/otherfolder
  651. #
  652. # The refspecs fetched by gitfs remotes
  653. #gitfs_refspecs:
  654. # - '+refs/heads/*:refs/remotes/origin/*'
  655. # - '+refs/tags/*:refs/tags/*'
  656. #
  657. #
  658. ##### Pillar settings #####
  659. ##########################################
  660. # Salt Pillars allow for the building of global data that can be made selectively
  661. # available to different minions based on minion grain filtering. The Salt
  662. # Pillar is laid out in the same fashion as the file server, with environments,
  663. # a top file and sls files. However, pillar data does not need to be in the
  664. # highstate format, and is generally just key/value pairs.
  665. #pillar_roots:
  666. # base:
  667. # - /srv/pillar
  668. #
  669. #ext_pillar:
  670. # - hiera: /etc/hiera.yaml
  671. # - cmd_yaml: cat /etc/salt/yaml
  672. # A list of paths to be recursively decrypted during pillar compilation.
  673. # Entries in this list can be formatted either as a simple string, or as a
  674. # key/value pair, with the key being the pillar location, and the value being
  675. # the renderer to use for pillar decryption. If the former is used, the
  676. # renderer specified by decrypt_pillar_default will be used.
  677. #decrypt_pillar:
  678. # - 'foo:bar': gpg
  679. # - 'lorem:ipsum:dolor'
  680. # The delimiter used to distinguish nested data structures in the
  681. # decrypt_pillar option.
  682. #decrypt_pillar_delimiter: ':'
  683. # The default renderer used for decryption, if one is not specified for a given
  684. # pillar key in decrypt_pillar.
  685. #decrypt_pillar_default: gpg
  686. # List of renderers which are permitted to be used for pillar decryption.
  687. #decrypt_pillar_renderers:
  688. # - gpg
  689. # The ext_pillar_first option allows for external pillar sources to populate
  690. # before file system pillar. This allows for targeting file system pillar from
  691. # ext_pillar.
  692. #ext_pillar_first: False
  693. # The external pillars permitted to be used on-demand using pillar.ext
  694. #on_demand_ext_pillar:
  695. # - libvirt
  696. # - virtkey
  697. # The pillar_gitfs_ssl_verify option specifies whether to ignore ssl certificate
  698. # errors when contacting the pillar gitfs backend. You might want to set this to
  699. # false if you're using a git backend that uses a self-signed certificate but
  700. # keep in mind that setting this flag to anything other than the default of True
  701. # is a security concern, you may want to try using the ssh transport.
  702. #pillar_gitfs_ssl_verify: True
  703. # The pillar_opts option adds the master configuration file data to a dict in
  704. # the pillar called "master". This is used to set simple configurations in the
  705. # master config file that can then be used on minions.
  706. #pillar_opts: False
  707. # The pillar_safe_render_error option prevents the master from passing pillar
  708. # render errors to the minion. This is set on by default because the error could
  709. # contain templating data which would give that minion information it shouldn't
  710. # have, like a password! When set true the error message will only show:
  711. # Rendering SLS 'my.sls' failed. Please see master log for details.
  712. #pillar_safe_render_error: True
  713. # The pillar_source_merging_strategy option allows you to configure merging strategy
  714. # between different sources. It accepts five values: none, recurse, aggregate, overwrite,
  715. # or smart. None will not do any merging at all. Recurse will merge recursively mapping of data.
  716. # Aggregate instructs aggregation of elements between sources that use the #!yamlex renderer. Overwrite
  717. # will overwrite elements according the order in which they are processed. This is
  718. # behavior of the 2014.1 branch and earlier. Smart guesses the best strategy based
  719. # on the "renderer" setting and is the default value.
  720. #pillar_source_merging_strategy: smart
  721. # Recursively merge lists by aggregating them instead of replacing them.
  722. #pillar_merge_lists: False
  723. # Set this option to True to force the pillarenv to be the same as the effective
  724. # saltenv when running states. If pillarenv is specified this option will be
  725. # ignored.
  726. #pillarenv_from_saltenv: False
  727. # Set this option to 'True' to force a 'KeyError' to be raised whenever an
  728. # attempt to retrieve a named value from pillar fails. When this option is set
  729. # to 'False', the failed attempt returns an empty string. Default is 'False'.
  730. #pillar_raise_on_missing: False
  731. # Git External Pillar (git_pillar) Configuration Options
  732. #
  733. # Specify the provider to be used for git_pillar. Must be either pygit2 or
  734. # gitpython. If unset, then both will be tried in that same order, and the
  735. # first one with a compatible version installed will be the provider that
  736. # is used.
  737. #git_pillar_provider: pygit2
  738. # If the desired branch matches this value, and the environment is omitted
  739. # from the git_pillar configuration, then the environment for that git_pillar
  740. # remote will be base.
  741. #git_pillar_base: master
  742. # If the branch is omitted from a git_pillar remote, then this branch will
  743. # be used instead
  744. #git_pillar_branch: master
  745. # Environment to use for git_pillar remotes. This is normally derived from
  746. # the branch/tag (or from a per-remote env parameter), but if set this will
  747. # override the process of deriving the env from the branch/tag name.
  748. #git_pillar_env: ''
  749. # Path relative to the root of the repository where the git_pillar top file
  750. # and SLS files are located.
  751. #git_pillar_root: ''
  752. # Specifies whether or not to ignore SSL certificate errors when contacting
  753. # the remote repository.
  754. #git_pillar_ssl_verify: False
  755. # When set to False, if there is an update/checkout lock for a git_pillar
  756. # remote and the pid written to it is not running on the master, the lock
  757. # file will be automatically cleared and a new lock will be obtained.
  758. #git_pillar_global_lock: True
  759. # Git External Pillar Authentication Options
  760. #
  761. # Along with git_pillar_password, is used to authenticate to HTTPS remotes.
  762. #git_pillar_user: ''
  763. # Along with git_pillar_user, is used to authenticate to HTTPS remotes.
  764. # This parameter is not required if the repository does not use authentication.
  765. #git_pillar_password: ''
  766. # By default, Salt will not authenticate to an HTTP (non-HTTPS) remote.
  767. # This parameter enables authentication over HTTP.
  768. #git_pillar_insecure_auth: False
  769. # Along with git_pillar_privkey (and optionally git_pillar_passphrase),
  770. # is used to authenticate to SSH remotes.
  771. #git_pillar_pubkey: ''
  772. # Along with git_pillar_pubkey (and optionally git_pillar_passphrase),
  773. # is used to authenticate to SSH remotes.
  774. #git_pillar_privkey: ''
  775. # This parameter is optional, required only when the SSH key being used
  776. # to authenticate is protected by a passphrase.
  777. #git_pillar_passphrase: ''
  778. # The refspecs fetched by git_pillar remotes
  779. #git_pillar_refspecs:
  780. # - '+refs/heads/*:refs/remotes/origin/*'
  781. # - '+refs/tags/*:refs/tags/*'
  782. # A master can cache pillars locally to bypass the expense of having to render them
  783. # for each minion on every request. This feature should only be enabled in cases
  784. # where pillar rendering time is known to be unsatisfactory and any attendant security
  785. # concerns about storing pillars in a master cache have been addressed.
  786. #
  787. # When enabling this feature, be certain to read through the additional ``pillar_cache_*``
  788. # configuration options to fully understand the tunable parameters and their implications.
  789. #
  790. # Note: setting ``pillar_cache: True`` has no effect on targeting Minions with Pillars.
  791. # See https://docs.saltstack.com/en/latest/topics/targeting/pillar.html
  792. #pillar_cache: False
  793. # If and only if a master has set ``pillar_cache: True``, the cache TTL controls the amount
  794. # of time, in seconds, before the cache is considered invalid by a master and a fresh
  795. # pillar is recompiled and stored.
  796. #pillar_cache_ttl: 3600
  797. # If and only if a master has set `pillar_cache: True`, one of several storage providers
  798. # can be utililzed.
  799. #
  800. # `disk`: The default storage backend. This caches rendered pillars to the master cache.
  801. # Rendered pillars are serialized and deserialized as msgpack structures for speed.
  802. # Note that pillars are stored UNENCRYPTED. Ensure that the master cache
  803. # has permissions set appropriately. (Same defaults are provided.)
  804. #
  805. # memory: [EXPERIMENTAL] An optional backend for pillar caches which uses a pure-Python
  806. # in-memory data structure for maximal performance. There are several caveats,
  807. # however. First, because each master worker contains its own in-memory cache,
  808. # there is no guarantee of cache consistency between minion requests. This
  809. # works best in situations where the pillar rarely if ever changes. Secondly,
  810. # and perhaps more importantly, this means that unencrypted pillars will
  811. # be accessible to any process which can examine the memory of the ``salt-master``!
  812. # This may represent a substantial security risk.
  813. #
  814. #pillar_cache_backend: disk
  815. ##### Syndic settings #####
  816. ##########################################
  817. # The Salt syndic is used to pass commands through a master from a higher
  818. # master. Using the syndic is simple. If this is a master that will have
  819. # syndic servers(s) below it, then set the "order_masters" setting to True.
  820. #
  821. # If this is a master that will be running a syndic daemon for passthrough, then
  822. # the "syndic_master" setting needs to be set to the location of the master server
  823. # to receive commands from.
  824. # Set the order_masters setting to True if this master will command lower
  825. # masters' syndic interfaces.
  826. #order_masters: False
  827. # If this master will be running a salt syndic daemon, syndic_master tells
  828. # this master where to receive commands from.
  829. #syndic_master: masterofmasters
  830. # This is the 'ret_port' of the MasterOfMaster:
  831. #syndic_master_port: 4506
  832. # PID file of the syndic daemon:
  833. #syndic_pidfile: /var/run/salt-syndic.pid
  834. # The log file of the salt-syndic daemon:
  835. #syndic_log_file: /var/log/salt/syndic
  836. # The behaviour of the multi-syndic when connection to a master of masters failed.
  837. # Can specify ``random`` (default) or ``ordered``. If set to ``random``, masters
  838. # will be iterated in random order. If ``ordered`` is specified, the configured
  839. # order will be used.
  840. #syndic_failover: random
  841. # The number of seconds for the salt client to wait for additional syndics to
  842. # check in with their lists of expected minions before giving up.
  843. #syndic_wait: 5
  844. ##### Peer Publish settings #####
  845. ##########################################
  846. # Salt minions can send commands to other minions, but only if the minion is
  847. # allowed to. By default "Peer Publication" is disabled, and when enabled it
  848. # is enabled for specific minions and specific commands. This allows secure
  849. # compartmentalization of commands based on individual minions.
  850. # The configuration uses regular expressions to match minions and then a list
  851. # of regular expressions to match functions. The following will allow the
  852. # minion authenticated as foo.example.com to execute functions from the test
  853. # and pkg modules.
  854. #peer:
  855. # foo.example.com:
  856. # - test.*
  857. # - pkg.*
  858. #
  859. # This will allow all minions to execute all commands:
  860. #peer:
  861. # .*:
  862. # - .*
  863. #
  864. # This is not recommended, since it would allow anyone who gets root on any
  865. # single minion to instantly have root on all of the minions!
  866. # Minions can also be allowed to execute runners from the salt master.
  867. # Since executing a runner from the minion could be considered a security risk,
  868. # it needs to be enabled. This setting functions just like the peer setting
  869. # except that it opens up runners instead of module functions.
  870. #
  871. # All peer runner support is turned off by default and must be enabled before
  872. # using. This will enable all peer runners for all minions:
  873. #peer_run:
  874. # .*:
  875. # - .*
  876. #
  877. # To enable just the manage.up runner for the minion foo.example.com:
  878. #peer_run:
  879. # foo.example.com:
  880. # - manage.up
  881. #
  882. #
  883. ##### Mine settings #####
  884. #####################################
  885. # Restrict mine.get access from minions. By default any minion has a full access
  886. # to get all mine data from master cache. In acl definion below, only pcre matches
  887. # are allowed.
  888. # mine_get:
  889. # .*:
  890. # - .*
  891. #
  892. # The example below enables minion foo.example.com to get 'network.interfaces' mine
  893. # data only, minions web* to get all network.* and disk.* mine data and all other
  894. # minions won't get any mine data.
  895. # mine_get:
  896. # foo.example.com:
  897. # - network.interfaces
  898. # web.*:
  899. # - network.*
  900. # - disk.*
  901. ##### Logging settings #####
  902. ##########################################
  903. # The location of the master log file
  904. # The master log can be sent to a regular file, local path name, or network
  905. # location. Remote logging works best when configured to use rsyslogd(8) (e.g.:
  906. # ``file:///dev/log``), with rsyslogd(8) configured for network logging. The URI
  907. # format is: <file|udp|tcp>://<host|socketpath>:<port-if-required>/<log-facility>
  908. #log_file: /var/log/salt/master
  909. #log_file: file:///dev/log
  910. #log_file: udp://loghost:10514
  911. #log_file: /var/log/salt/master
  912. #key_logfile: /var/log/salt/key
  913. # The level of messages to send to the console.
  914. # One of 'garbage', 'trace', 'debug', 'info', 'warning', 'error', 'critical'.
  915. #
  916. # The following log levels are considered INSECURE and may log sensitive data:
  917. # ['garbage', 'trace', 'debug']
  918. #
  919. #log_level: warning
  920. # The level of messages to send to the log file.
  921. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  922. # If using 'log_granular_levels' this must be set to the highest desired level.
  923. #log_level_logfile: warning
  924. # The date and time format used in log messages. Allowed date/time formatting
  925. # can be seen here: http://docs.python.org/library/time.html#time.strftime
  926. #log_datefmt: '%H:%M:%S'
  927. #log_datefmt_logfile: '%Y-%m-%d %H:%M:%S'
  928. # The format of the console logging messages. Allowed formatting options can
  929. # be seen here: http://docs.python.org/library/logging.html#logrecord-attributes
  930. #
  931. # Console log colors are specified by these additional formatters:
  932. #
  933. # %(colorlevel)s
  934. # %(colorname)s
  935. # %(colorprocess)s
  936. # %(colormsg)s
  937. #
  938. # Since it is desirable to include the surrounding brackets, '[' and ']', in
  939. # the coloring of the messages, these color formatters also include padding as
  940. # well. Color LogRecord attributes are only available for console logging.
  941. #
  942. #log_fmt_console: '%(colorlevel)s %(colormsg)s'
  943. #log_fmt_console: '[%(levelname)-8s] %(message)s'
  944. #
  945. #log_fmt_logfile: '%(asctime)s,%(msecs)03d [%(name)-17s][%(levelname)-8s] %(message)s'
  946. # This can be used to control logging levels more specificically. This
  947. # example sets the main salt library at the 'warning' level, but sets
  948. # 'salt.modules' to log at the 'debug' level:
  949. # log_granular_levels:
  950. # 'salt': 'warning'
  951. # 'salt.modules': 'debug'
  952. #
  953. #log_granular_levels: {}
  954. ##### Node Groups ######
  955. ##########################################
  956. # Node groups allow for logical groupings of minion nodes. A group consists of
  957. # a group name and a compound target. Nodgroups can reference other nodegroups
  958. # with 'N@' classifier. Ensure that you do not have circular references.
  959. #
  960. #nodegroups:
  961. # group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com or bl*.domain.com'
  962. # group2: 'G@os:Debian and foo.domain.com'
  963. # group3: 'G@os:Debian and N@group1'
  964. # group4:
  965. # - 'G@foo:bar'
  966. # - 'or'
  967. # - 'G@foo:baz'
  968. ##### Range Cluster settings #####
  969. ##########################################
  970. # The range server (and optional port) that serves your cluster information
  971. # https://github.com/ytoolshed/range/wiki/%22yamlfile%22-module-file-spec
  972. #
  973. #range_server: range:80
  974. ##### Windows Software Repo settings #####
  975. ###########################################
  976. # Location of the repo on the master:
  977. #winrepo_dir_ng: '/srv/salt/win/repo-ng'
  978. #
  979. # List of git repositories to include with the local repo:
  980. #winrepo_remotes_ng:
  981. # - 'https://github.com/saltstack/salt-winrepo-ng.git'
  982. ##### Windows Software Repo settings - Pre 2015.8 #####
  983. ########################################################
  984. # Legacy repo settings for pre-2015.8 Windows minions.
  985. #
  986. # Location of the repo on the master:
  987. #winrepo_dir: '/srv/salt/win/repo'
  988. #
  989. # Location of the master's repo cache file:
  990. #winrepo_mastercachefile: '/srv/salt/win/repo/winrepo.p'
  991. #
  992. # List of git repositories to include with the local repo:
  993. #winrepo_remotes:
  994. # - 'https://github.com/saltstack/salt-winrepo.git'
  995. # The refspecs fetched by winrepo remotes
  996. #winrepo_refspecs:
  997. # - '+refs/heads/*:refs/remotes/origin/*'
  998. # - '+refs/tags/*:refs/tags/*'
  999. #
  1000. ##### Returner settings ######
  1001. ############################################
  1002. # Which returner(s) will be used for minion's result:
  1003. #return: mysql
  1004. ###### Miscellaneous settings ######
  1005. ############################################
  1006. # Default match type for filtering events tags: startswith, endswith, find, regex, fnmatch
  1007. #event_match_type: startswith
  1008. # Save runner returns to the job cache
  1009. #runner_returns: True
  1010. # Permanently include any available Python 3rd party modules into thin and minimal Salt
  1011. # when they are generated for Salt-SSH or other purposes.
  1012. # The modules should be named by the names they are actually imported inside the Python.
  1013. # The value of the parameters can be either one module or a comma separated list of them.
  1014. #thin_extra_mods: foo,bar
  1015. #min_extra_mods: foo,bar,baz
  1016. ###### Keepalive settings ######
  1017. ############################################
  1018. # Warning: Failure to set TCP keepalives on the salt-master can result in
  1019. # not detecting the loss of a minion when the connection is lost or when
  1020. # it's host has been terminated without first closing the socket.
  1021. # Salt's Presence System depends on this connection status to know if a minion
  1022. # is "present".
  1023. # ZeroMQ now includes support for configuring SO_KEEPALIVE if supported by
  1024. # the OS. If connections between the minion and the master pass through
  1025. # a state tracking device such as a firewall or VPN gateway, there is
  1026. # the risk that it could tear down the connection the master and minion
  1027. # without informing either party that their connection has been taken away.
  1028. # Enabling TCP Keepalives prevents this from happening.
  1029. # Overall state of TCP Keepalives, enable (1 or True), disable (0 or False)
  1030. # or leave to the OS defaults (-1), on Linux, typically disabled. Default True, enabled.
  1031. #tcp_keepalive: True
  1032. # How long before the first keepalive should be sent in seconds. Default 300
  1033. # to send the first keepalive after 5 minutes, OS default (-1) is typically 7200 seconds
  1034. # on Linux see /proc/sys/net/ipv4/tcp_keepalive_time.
  1035. #tcp_keepalive_idle: 300
  1036. # How many lost probes are needed to consider the connection lost. Default -1
  1037. # to use OS defaults, typically 9 on Linux, see /proc/sys/net/ipv4/tcp_keepalive_probes.
  1038. #tcp_keepalive_cnt: -1
  1039. # How often, in seconds, to send keepalives after the first one. Default -1 to
  1040. # use OS defaults, typically 75 seconds on Linux, see
  1041. # /proc/sys/net/ipv4/tcp_keepalive_intvl.
  1042. #tcp_keepalive_intvl: -1