From aa354cbad060a019e525a94f024c5edd0416b01b Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Thu, 16 Aug 2018 21:15:20 +0200 Subject: [PATCH] meta: sort choices matching to description (#23004) --- 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 e8bf70b5f06..b2c093e868c 100644 --- a/lib/ansible/modules/utilities/helper/meta.py +++ b/lib/ansible/modules/utilities/helper/meta.py @@ -39,7 +39,7 @@ options: - "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(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'] + choices: ['flush_handlers', 'refresh_inventory', 'noop', 'clear_facts', 'clear_host_errors', 'end_play', 'reset_connection'] required: true notes: - C(meta) is not really a module nor action_plugin as such it cannot be overwritten.