mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
New salt-cloud instances should not use old hash_type default.
Updates hash_type default to sha256 instead of md5 for new instances installed via salt-cloud. Fixes #32246 Refs #31162
This commit is contained in:
parent
3e374e7ec6
commit
66acc00c71
1 changed files with 2 additions and 1 deletions
|
@ -219,7 +219,8 @@ def minion_config(opts, vm_):
|
|||
# Some default options are Null, let's set a reasonable default
|
||||
minion.update(
|
||||
log_level='info',
|
||||
log_level_logfile='info'
|
||||
log_level_logfile='info',
|
||||
hash_type='sha256'
|
||||
)
|
||||
|
||||
# Now, let's update it to our needs
|
||||
|
|
Loading…
Add table
Reference in a new issue