mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
c52e9a94af
The 'enabled' option was highly ambiguous in that pkgrepo.managed also supports a 'disabled' one that should be enough to express if a repository should be enabled or disabled. It is also assumed that users who use pkgrepo.managed also intend to use the repository later on which is why we set 'disabled' to False by default. This closes #22147
39 lines
1.4 KiB
ReStructuredText
39 lines
1.4 KiB
ReStructuredText
=======================================
|
|
Salt Release Notes - Codename Beryllium
|
|
=======================================
|
|
|
|
Core Changes
|
|
============
|
|
|
|
- Add system version info to ``versions_report``, which appears in both ``salt
|
|
--versions-report`` and ``salt '*' test.versions_report``. Also added is an
|
|
alias ``test.versions`` to ``test.versions_report``. (:issue:`21906`)
|
|
|
|
- Add colorized console logging support. This is activated by using
|
|
``%(colorlevel)s``, ``%(colorname)s``, ``%(colorprocess)s``, ``%(colormsg)s``
|
|
in ``log_fmt_console`` in the config file for any of ``salt-master``,
|
|
``salt-minion``, and ``salt-cloud``.
|
|
|
|
JBoss 7 State
|
|
=============
|
|
|
|
Remove unused argument ``timeout`` in jboss7.status.
|
|
|
|
Pkgrepo State
|
|
=============
|
|
|
|
Deprecate ``enabled`` argument in ``pkgrepo.managed`` in favor of ``disabled``.
|
|
|
|
Archive Module
|
|
==============
|
|
|
|
In the ``archive.tar`` and ``archive.cmd_unzip`` module functions, remove the
|
|
arbitrary prefixing of the options string with ``-``. An options string
|
|
beginning with a ``--long-option``, would have uncharacteristically needed its
|
|
first ``-`` removed under the former scheme.
|
|
|
|
Also, tar will parse its options differently if short options are used with or
|
|
without a preceding ``-``, so it is better to not confuse the user into
|
|
thinking they're using the non- ``-`` format, when really they are using the
|
|
with- ``-`` format.
|