mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add keep_jobs option to the configuration
This commit is contained in:
parent
fa258ab1ff
commit
b5c05799c8
2 changed files with 3 additions and 0 deletions
|
@ -14,6 +14,8 @@
|
|||
#pki_dir: /etc/salt/pki
|
||||
# Directory to store job and cache data
|
||||
#cachedir: /var/cache/salt
|
||||
# Set the number of hours to keep old job information
|
||||
#keep_jobs: 24
|
||||
# Enable "open mode", this mode still maintains encryption, but turns off
|
||||
# authentication, this is only intended for highly secure environments or for
|
||||
# the situation where your keys end up in a bad state. If you run in open more
|
||||
|
|
|
@ -62,6 +62,7 @@ def master_config(path):
|
|||
'ret_port': '4506',
|
||||
'local_threads': 5,
|
||||
'local_port': '4507',
|
||||
'keep_jobs': 24,
|
||||
'pki_dir': '/etc/salt/pki',
|
||||
'cachedir': '/var/cache/salt',
|
||||
'open_mode': False,
|
||||
|
|
Loading…
Add table
Reference in a new issue