never tags docs and test (#35964)

* fufilling the promise

* moved changes

* Copy edit
This commit is contained in:
Brian Coca 2018-02-14 17:01:36 -05:00 committed by GitHub
commit 0cf70a8970
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 3 deletions

View file

@ -129,11 +129,23 @@ Example::
tags:
- tag1
There are another 3 special keywords for tags, ``tagged``, ``untagged`` and ``all``, which run only tagged, only untagged
.. versionadded:: 2.5
Another special tag is ``never``, which will prevent a task from running unless a tag is specifically requested.
Example::
tasks:
- debug: msg='{{ showmevar}}'
tags: [ 'never', 'debug' ]
In this example, the task will only run when the ``debug`` or ``never`` tag is explicitly requested.
There are another 3 special keywords for tags: ``tagged``, ``untagged`` and ``all``, which run only tagged, only untagged
and all tasks respectively.
By default ansible runs as if ``--tags all`` had been specified.
By default, Ansible runs as if ``--tags all`` had been specified.
.. seealso::