summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2018-05-23 07:10:36 +1000
committerGitHub <noreply@github.com>2018-05-23 07:10:36 +1000
commit070a5557d19f20f1e20fc0c8f002498686bfee9c (patch)
tree0d8de05418127bdb9f673824199c814906b960c3 /docs
parent7145dd05b6a6ce370b318d321d757dada539f6c4 (diff)
downloadansible-070a5557d19f20f1e20fc0c8f002498686bfee9c.tar.gz
always_run: removed deprecated always_run task option (#40470)
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/keyword_desc.yml1
-rw-r--r--docs/docsite/rst/porting_guides/porting_guide_2.6.rst2
2 files changed, 1 insertions, 2 deletions
diff --git a/docs/docsite/keyword_desc.yml b/docs/docsite/keyword_desc.yml
index 189ca389f3..ba6231553a 100644
--- a/docs/docsite/keyword_desc.yml
+++ b/docs/docsite/keyword_desc.yml
@@ -4,7 +4,6 @@ accelerate_port: "*DEPRECATED*, set to override default port use for accelerate
action: "The 'action' to execute for a task, it normally translates into a C(module) or action plugin."
args: "*DEPRECATED*, A secondary way to add arguments into a task. Takes a dictionary in which keys map to options and values."
always: List of tasks, in a block, that execute no matter if there is an error in the block or not.
-always_run: "*DEPRECATED*, forces a task to run even in check mode. Use :term:`check_mode` directive instead."
any_errors_fatal: Force any un-handled task errors on any host to propagate to all hosts and end the play.
async: Run a task asynchronously if the C(action) supports this; value is maximum runtime in seconds.
become: Boolean that controls if privilege escalation is used or not on :term:`Task` execution.
diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.6.rst b/docs/docsite/rst/porting_guides/porting_guide_2.6.rst
index 456717ee83..717f8b72f5 100644
--- a/docs/docsite/rst/porting_guides/porting_guide_2.6.rst
+++ b/docs/docsite/rst/porting_guides/porting_guide_2.6.rst
@@ -17,7 +17,7 @@ This document is part of a collection on porting. The complete list of porting g
Playbook
========
-No notable changes.
+* The deprecated task option ``always_run`` has been removed, please use ``check_mode: no`` instead.
Deprecated
==========