2016.3.9.rst 1.3 KB

123456789101112131415161718192021222324252627282930
  1. ===========================
  2. Salt 2016.3.9 Release Notes
  3. ===========================
  4. Version 2016.3.9 is a bugfix release for :ref:`2016.3.0 <release-2016-3-0>`.
  5. Master Changes
  6. ==============
  7. The following options have been added to the master config file:
  8. - :conf_master:`allow_minion_key_revoke` - This option controls whether a
  9. minion can request that the master revoke its key. When ``True``, a minion
  10. can request a key revocation and the master will comply. If it is ``False``,
  11. the key will not be revoked by the msater.
  12. - :conf_master:`require_minion_sign_messages` - This requires that minions
  13. cryptographically sign the messages they publish to the master. If minions
  14. are not signing, then log this information at loglevel ``INFO`` and drop the
  15. message without acting on it.
  16. - :conf_master:`drop_messages_signature_fail` - Drop messages from minions when
  17. their signatures do not validate. Note that when this option is ``False`` but
  18. `require_minion_sign_messages` is ``True``, minions *MUST* sign their
  19. messages, but the validity of their signatures is ignored.
  20. - :conf_master:`minion_sign_messages` - Causes the minion to cryptographically
  21. sign the payload of messages it places on the event bus for the master. The
  22. payloads are signed with the minion's private key so the master can verify
  23. the signature with its public key.