From b116eaa48594fbbc762a910442d8d7bafc1c2907 Mon Sep 17 00:00:00 2001 From: Martin Krizek Date: Thu, 17 May 2018 05:53:46 +0200 Subject: [PATCH] Clarify in docs that end_play affects all hosts (#40235) --- lib/ansible/modules/utilities/helper/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/utilities/helper/meta.py b/lib/ansible/modules/utilities/helper/meta.py index d15852196bc..e8bf70b5f06 100644 --- a/lib/ansible/modules/utilities/helper/meta.py +++ b/lib/ansible/modules/utilities/helper/meta.py @@ -37,7 +37,7 @@ options: - "C(noop) (added in 2.0) This literally does 'nothing'. It is mainly used internally and not recommended for general use." - "C(clear_facts) (added in 2.1) causes the gathered facts for the hosts specified in the play's list of hosts to be cleared, including the fact cache." - "C(clear_host_errors) (added in 2.1) clears the failed state (if any) from hosts specified in the play's list of hosts." - - "C(end_play) (added in 2.2) causes the play to end without failing the host." + - "C(end_play) (added in 2.2) causes the play to end without failing the host(s). Note that this affects all hosts." - "C(reset_connection) (added in 2.3) interrupts a persistent connection (i.e. ssh + control persist)" choices: ['noop', 'flush_handlers', 'refresh_inventory', 'clear_facts', 'clear_host_errors', 'end_play', 'reset_connection'] required: true