mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Remove deprecated tags config option (#44479)
* Remove deprecated tags config option * wordsmith porting guide entry acozine via github
This commit is contained in:
parent
18f361ecdd
commit
0e7b470a01
4 changed files with 22 additions and 26 deletions
|
@ -14,6 +14,20 @@ This document is part of a collection on porting. The complete list of porting g
|
|||
|
||||
.. contents:: Topics
|
||||
|
||||
Command Line
|
||||
============
|
||||
|
||||
If you specify ``--tags`` or ``--skip-tags`` multiple times on the command line, Ansible will merge the specified
|
||||
tags together. In previous versions of Ansible, you could set ``merge_multiple_cli_tags`` to ``False``
|
||||
if you wanted to keep only the last-specified ``--tags``. This config
|
||||
option existed for backwards compatibility. The overwriting behavior was deprecated in 2.3 and
|
||||
the default behavior was changed in 2.4. Ansible-2.7 removes the config option; multiple
|
||||
``--tags`` are now always merged.
|
||||
|
||||
If you have a shell script that depends on setting ``merge_multiple_cli_tags`` to ``False``, please upgrade your script
|
||||
so it only adds the ``--tags`` you actually want before upgrading to Ansible-2.7.
|
||||
|
||||
|
||||
Python Compatibility
|
||||
====================
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue