mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #38051 from Ch3LL/fix_hash_docs
add docs for hash_type change to sha256
This commit is contained in:
commit
e90cbbef08
3 changed files with 8 additions and 6 deletions
|
@ -1434,15 +1434,15 @@ on a large number of minions.
|
|||
``hash_type``
|
||||
-------------
|
||||
|
||||
Default: ``md5``
|
||||
Default: ``sha256``
|
||||
|
||||
The hash_type is the hash to use when discovering the hash of a file on
|
||||
the master server. The default is md5, but sha1, sha224, sha256, sha384, and
|
||||
the master server. The default is sha256, but md5, sha1, sha224, sha384, and
|
||||
sha512 are also supported.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
hash_type: md5
|
||||
hash_type: sha256
|
||||
|
||||
.. conf_master:: file_buffer_size
|
||||
|
||||
|
|
|
@ -1546,15 +1546,15 @@ is impacted.
|
|||
``hash_type``
|
||||
-------------
|
||||
|
||||
Default: ``md5``
|
||||
Default: ``sha256``
|
||||
|
||||
The hash_type is the hash to use when discovering the hash of a file on the
|
||||
local fileserver. The default is md5, but sha1, sha224, sha256, sha384, and
|
||||
local fileserver. The default is sha256, but md5, sha1, sha224, sha384, and
|
||||
sha512 are also supported.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
hash_type: md5
|
||||
hash_type: sha256
|
||||
|
||||
|
||||
Pillar Settings
|
||||
|
|
|
@ -375,6 +375,8 @@ Functionality Changes
|
|||
specifies the number of times a minion should attempt to contact a master to
|
||||
attempt a connection. This allows better handling of occasional master
|
||||
downtime in a multi-master topology.
|
||||
- The default hash_type is now sha256 instead of md5. You will need to make sure both
|
||||
your master and minion share the same hash_type.
|
||||
- Nodegroups consisting of a simple list of minion IDs can now also be declared
|
||||
as a yaml list. The below two examples are equivalent:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue