mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Replace issue links with the :issue:
extlink extension.
This commit is contained in:
parent
5a675e364f
commit
87472875fe
@ -231,7 +231,7 @@ parameter. The wait-time will be a random number of seconds between
|
||||
.. conf_minion:: acceptance_wait_time_max
|
||||
|
||||
``acceptance_wait_time_max``
|
||||
------------------------
|
||||
----------------------------
|
||||
|
||||
Default: ``None``
|
||||
|
||||
|
@ -10,9 +10,8 @@ Windows
|
||||
- Only allow Administrator's group and SYSTEM user access to C:\\salt. This
|
||||
eliminates a race condition where a non-admin user could modify a template or
|
||||
managed file before it is executed by the minion (which is running as an
|
||||
elevated user), thus avoiding a potential escalation of privileges. (6361_)
|
||||
elevated user), thus avoiding a potential escalation of privileges. (:issue:`6361`)
|
||||
|
||||
.. _`6361`: https://github.com/saltstack/salt/issues/6361
|
||||
|
||||
Grains
|
||||
------
|
||||
@ -23,40 +22,34 @@ Grains
|
||||
Pillar
|
||||
------
|
||||
- Don't try to load :doc:`git_pillar </ref/pillar/all/salt.pillar.git_pillar>`
|
||||
if not enabled in master config (6052_)
|
||||
if not enabled in master config (:issue:`6052`)
|
||||
- Functions :mod:`pillar.item <salt.modules.pillar.item>` and
|
||||
:mod:`pillar.items <salt.modules.pillar.items>` added for parity with
|
||||
:mod:`grains.item <salt.modules.grains.item>`/:mod:`grains.items
|
||||
<salt.modules.grains.items>`. The old function ``pillar.data`` is preserved
|
||||
for backwards compatibility.
|
||||
- Fixed minion traceback when Pillar SLS is malformed (5910_)
|
||||
- Fixed minion traceback when Pillar SLS is malformed (:issue:`5910`)
|
||||
|
||||
.. _`6052`: https://github.com/saltstack/salt/issues/6052
|
||||
.. _`5910`: https://github.com/saltstack/salt/issues/5910
|
||||
|
||||
Peer Publishing
|
||||
---------------
|
||||
- More gracefully handle improperly quoted publish commands (5958_)
|
||||
- More gracefully handle improperly quoted publish commands (:issue:`5958`)
|
||||
- Fixed traceback when timeout specified via the CLI fo :mod:`publish.publish
|
||||
<salt.modules.publish.publish>`, :mod:`publish.full_data
|
||||
<salt.modules.publish.full_data>` (5959_)
|
||||
<salt.modules.publish.full_data>` (:issue:`5959`)
|
||||
- Fixed unintended change in output of :mod:`publish.publish
|
||||
<salt.modules.publish.publish>` (5928_)
|
||||
<salt.modules.publish.publish>` (:issue:`5928`)
|
||||
|
||||
.. _`5958`: https://github.com/saltstack/salt/issues/5958
|
||||
.. _`5959`: https://github.com/saltstack/salt/issues/5959
|
||||
.. _`5928`: https://github.com/saltstack/salt/issues/5928
|
||||
|
||||
Minion
|
||||
------
|
||||
- Fixed salt-key usage in minionswarm script
|
||||
- Quieted warning about :strong:`SALT_MINION_CONFIG` environment variable on
|
||||
minion startup and for CLI commands run via ``salt-call`` (5956_)
|
||||
minion startup and for CLI commands run via ``salt-call`` (:issue:`5956`)
|
||||
- Added minion config parameter :conf_minion:`random_reauth_delay` to stagger
|
||||
re-auth attempts when the minion is waiting for the master to approve its
|
||||
public key. This helps prevent SYN flooding in larger environments.
|
||||
|
||||
.. _`5956`: https://github.com/saltstack/salt/issues/5956
|
||||
|
||||
User/Group Management
|
||||
---------------------
|
||||
@ -69,23 +62,19 @@ User/Group Management
|
||||
<salt.states.user.present>` state to set the password hash to the system
|
||||
default (i.e. an unset password)
|
||||
- Fixed multiple :mod:`group.present <salt.states.group.present>` states with
|
||||
the same group (6439_)
|
||||
the same group (:issue:`6439`)
|
||||
|
||||
.. _`6439`: https://github.com/saltstack/salt/issues/6439
|
||||
|
||||
File Management
|
||||
---------------
|
||||
- Fixed file.mkdir setting incorrect permissions (6033_)
|
||||
- Fixed file.mkdir setting incorrect permissions (:issue:`6033`)
|
||||
- Fixed cleanup of source files for templates when ``/tmp`` is in file_roots
|
||||
(6118_)
|
||||
(:issue:`6118`)
|
||||
- Fixed caching of zero-byte files when a non-empty file was previously cached
|
||||
at the same path
|
||||
- Added HTTP authentication support to the cp module (5641_)
|
||||
- Added HTTP authentication support to the cp module (:issue:`5641`)
|
||||
- Diffs are now suppressed when binary files are changed
|
||||
|
||||
.. _`6033`: https://github.com/saltstack/salt/issues/6033
|
||||
.. _`6118`: https://github.com/saltstack/salt/issues/6118
|
||||
.. _`5641`: https://github.com/saltstack/salt/issues/5641
|
||||
|
||||
Package/Repository Management
|
||||
-----------------------------
|
||||
@ -96,27 +85,22 @@ Package/Repository Management
|
||||
<salt.modules.state.sls>`/:mod:`state.highstate
|
||||
<salt.modules.state.highstate>`
|
||||
- YUM: Allow 32-bit packages with arches other than i686 to be managed on
|
||||
64-bit systems (6299_)
|
||||
- Fixed incorrect reporting in pkgrepo.managed states (5517_)
|
||||
64-bit systems (:issue:`6299`)
|
||||
- Fixed incorrect reporting in pkgrepo.managed states (:issue:`5517`)
|
||||
- Fixed 32-bit binary package installs on 64-bit RHEL-based distros, and added
|
||||
proper support for 32-bit packages on 64-bit Debian-based distros (6303_)
|
||||
proper support for 32-bit packages on 64-bit Debian-based distros (:issue:`6303`)
|
||||
- Fixed issue where requisites were inadvertently being put into YUM repo files
|
||||
(6471_)
|
||||
(:issue:`6471`)
|
||||
|
||||
.. _`6299`: https://github.com/saltstack/salt/issues/6299
|
||||
.. _`5517`: https://github.com/saltstack/salt/issues/5517
|
||||
.. _`6303`: https://github.com/saltstack/salt/issues/6303
|
||||
.. _`6471`: https://github.com/saltstack/salt/issues/6471
|
||||
|
||||
Service Management
|
||||
------------------
|
||||
- Fixed inaccurate reporting of results in :mod:`service.running
|
||||
<salt.states.service.running>` states when the service fails to start (5894_)
|
||||
<salt.states.service.running>` states when the service fails to start (:issue:`5894`)
|
||||
- Fixed handling of custom initscripts in RHEL-based distros so that they are
|
||||
immediately available, negating the need for a second state run to manage the
|
||||
service that the initscript controls
|
||||
|
||||
.. _`5894`: https://github.com/saltstack/salt/issues/5894
|
||||
|
||||
Networking
|
||||
----------
|
||||
@ -126,9 +110,8 @@ Networking
|
||||
<salt.modules.network.ip_addrs6>`. All three functions also now work without
|
||||
the underscore in the name, as well.
|
||||
- Fixed traceback in :mod:`bridge.show <salt.modules.bridge.show>` when
|
||||
interface is not present (6326_)
|
||||
interface is not present (:issue:`6326`)
|
||||
|
||||
.. _`6326`: https://github.com/saltstack/salt/issues/6326
|
||||
|
||||
SSH
|
||||
---
|
||||
@ -136,90 +119,71 @@ SSH
|
||||
<salt.states.ssh_known_hosts.present>` states
|
||||
- Fixed inaccurate reporting when :mod:`ssh_auth.present
|
||||
<salt.states.ssh_auth.present>` states are run with ``test=True``, when
|
||||
rsa/dss is used for the ``enc`` param instead of ssh-rsa/ssh-dss (5374_)
|
||||
rsa/dss is used for the ``enc`` param instead of ssh-rsa/ssh-dss (:issue:`5374`)
|
||||
|
||||
.. _`5374`: https://github.com/saltstack/salt/issues/5374
|
||||
|
||||
pip
|
||||
---
|
||||
- Properly handle ``-f`` lines in pip freeze output
|
||||
- Fixed regression in pip.installed states with specifying a requirements file
|
||||
(6003_)
|
||||
(:issue:`6003`)
|
||||
- Fixed use of ``editable`` argument in :mod:`pip.installed
|
||||
<salt.states.pip.installed>` states (6025_)
|
||||
<salt.states.pip.installed>` states (:issue:`6025`)
|
||||
- Deprecated ``runas`` parameter in execution function calls, in favor of
|
||||
``user``
|
||||
|
||||
.. _`6003`: https://github.com/saltstack/salt/issues/6003
|
||||
.. _`6025`: https://github.com/saltstack/salt/issues/6025
|
||||
|
||||
MySQL
|
||||
-----
|
||||
- Allow specification of :doc:`MySQL </ref/modules/all/salt.modules.mysql>`
|
||||
connection arguments via the CLI, overriding/bypassing minion config params
|
||||
- Allow :mod:`mysql_user.present <salt.states.mysql_user.present>` states to
|
||||
set a passwordless login (5550_)
|
||||
set a passwordless login (:issue:`5550`)
|
||||
- Fixed endless loop when :mod:`mysql.processlist
|
||||
<salt.modules.mysql.processlist>` is run (6297_)
|
||||
<salt.modules.mysql.processlist>` is run (:issue:`6297`)
|
||||
|
||||
.. _`5550`: https://github.com/saltstack/salt/issues/5550
|
||||
.. _`6297`: https://github.com/saltstack/salt/issues/6297
|
||||
|
||||
PostgreSQL
|
||||
----------
|
||||
- Fixed traceback in :mod:`postgres.user_list
|
||||
<salt.modules.postgres.user_list>` (6352_)
|
||||
<salt.modules.postgres.user_list>` (:issue:`6352`)
|
||||
|
||||
.. _`6352`: https://github.com/saltstack/salt/issues/6352
|
||||
|
||||
Miscellaneous
|
||||
-------------
|
||||
- Don't allow :doc:`npm states </ref/states/all/salt.states.npm>` to be used if
|
||||
:doc:`npm module </ref/modules/all/salt.modules.npm>` is not available
|
||||
- Fixed :mod:`alternatives.install <salt.states.alternatives.install>` states
|
||||
for which the target is a symlink (6162_)
|
||||
for which the target is a symlink (:issue:`6162`)
|
||||
- Fixed traceback in :doc:`sysbench module
|
||||
</ref/modules/all/salt.modules.sysbench>` (6175_)
|
||||
</ref/modules/all/salt.modules.sysbench>` (:issue:`6175`)
|
||||
- Fixed traceback in job cache
|
||||
- Fixed tempfile cleanup for windows
|
||||
- Fixed issue where SLS files using the :doc:`pydsl renderer
|
||||
</ref/renderers/all/salt.renderers.pydsl>` were not being run
|
||||
- Fixed issue where returners were being passed incorrect information
|
||||
(5518_)
|
||||
(:issue:`5518`)
|
||||
- Fixed traceback when numeric args are passed to :mod:`cmd.script
|
||||
<salt.states.cmd.script>` states
|
||||
- Fixed bug causing :mod:`cp.get_dir <salt.modules.cp.get_dir>` to return more
|
||||
directories than expected (6048_)
|
||||
directories than expected (:issue:`6048`)
|
||||
- Fixed traceback when :mod:`supervisord.running
|
||||
<salt.states.supervisord.running>` states are run with ``test=True`` (6053_)
|
||||
<salt.states.supervisord.running>` states are run with ``test=True`` (:issue:`6053`)
|
||||
- Fixed tracebacks when Salt encounters problems running rbenv (5888_)
|
||||
- Only make the :doc:`monit module </ref/modules/all/salt.modules.monit>`
|
||||
available if monit binary is present (5871_)
|
||||
available if monit binary is present (:issue:`5871`)
|
||||
- Fixed incorrect behavior of :mod:`img.mount_image
|
||||
<salt.modules.img.mount_image>`
|
||||
- Fixed traceback in :mod:`tomcat.deploy_war <salt.modules.tomcat.deploy_war>`
|
||||
in Windows
|
||||
- Don't re-write /etc/fstab if mount fails
|
||||
- Fixed tracebacks when Salt encounters problems running gem (5886_)
|
||||
- Fixed tracebacks when Salt encounters problems running gem (:issue:`5886`)
|
||||
- Fixed incorrect behavior of :mod:`selinux.boolean
|
||||
<salt.states.selinux.boolean>` states (5912_)
|
||||
<salt.states.selinux.boolean>` states (:issue:`5912`)
|
||||
- :doc:`RabbitMQ </ref/modules/all/salt.modules.rabbitmq>`: Quote passwords to
|
||||
avoid symbols being interpolated by the shell (6338_)
|
||||
avoid symbols being interpolated by the shell (:issue:`6338`)
|
||||
- Fixed tracebacks in :mod:`extfs.mkfs <salt.modules.extfs.mkfs>` and
|
||||
:mod:`extfs.tune <salt.modules.extfs.tune>` (6462_)
|
||||
:mod:`extfs.tune <salt.modules.extfs.tune>` (:issue:`6462`)
|
||||
- Fixed a regression with the :mod:`module.run <salt.states.module.run>` state
|
||||
where the ``m_name`` and ``m_fun`` arguments were being ignored (6464_)
|
||||
|
||||
.. _`6162`: https://github.com/saltstack/salt/issues/6162
|
||||
.. _`6175`: https://github.com/saltstack/salt/issues/6175
|
||||
.. _`5518`: https://github.com/saltstack/salt/issues/5518
|
||||
.. _`6048`: https://github.com/saltstack/salt/issues/6048
|
||||
.. _`6053`: https://github.com/saltstack/salt/issues/6053
|
||||
.. _`5888`: https://github.com/saltstack/salt/issues/5888
|
||||
.. _`5871`: https://github.com/saltstack/salt/issues/5871
|
||||
.. _`5886`: https://github.com/saltstack/salt/issues/5886
|
||||
.. _`5912`: https://github.com/saltstack/salt/issues/5912
|
||||
.. _`6338`: https://github.com/saltstack/salt/issues/6338
|
||||
.. _`6462`: https://github.com/saltstack/salt/issues/6462
|
||||
.. _`6464`: https://github.com/saltstack/salt/issues/6464
|
||||
where the ``m_name`` and ``m_fun`` arguments were being ignored (:issue:`6464`)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user