From aa67bb43fe1e548d68419aa0d307ce6de15066d5 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Wed, 31 Aug 2016 14:12:29 -0500 Subject: [PATCH] Adding 'end_play' docs to meta module --- lib/ansible/modules/utilities/helper/meta.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/utilities/helper/meta.py b/lib/ansible/modules/utilities/helper/meta.py index 6735bbc8e98..6e039123c38 100644 --- a/lib/ansible/modules/utilities/helper/meta.py +++ b/lib/ansible/modules/utilities/helper/meta.py @@ -35,7 +35,8 @@ 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." - choices: ['noop', 'flush_handlers', 'refresh_inventory', 'clear_facts', 'clear_host_errors'] + - "C(end_play) (added in 2.2) causes the play to end without failing the host." + choices: ['noop', 'flush_handlers', 'refresh_inventory', 'clear_facts', 'clear_host_errors', 'end_play'] required: true default: null notes: