From b9df8564a26c3337a1e98c1ace7c278bf1dbfcdc Mon Sep 17 00:00:00 2001 From: Ryan Brown Date: Thu, 9 Aug 2018 18:32:42 -0400 Subject: [PATCH] Fix spelling of ansbile to ansible (#43898) --- lib/ansible/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/constants.py b/lib/ansible/constants.py index cf7962a32fb..e19fd7d5e36 100644 --- a/lib/ansible/constants.py +++ b/lib/ansible/constants.py @@ -123,7 +123,7 @@ VAULT_VERSION_MAX = 1.0 # object. The dictionary values are tuples, to account for aliases # in variable names. -COMMON_CONNECTION_VARS = frozenset(set(('ansible_connection', 'ansbile_host', 'ansible_user', 'ansible_shell_executable', +COMMON_CONNECTION_VARS = frozenset(set(('ansible_connection', 'ansible_host', 'ansible_user', 'ansible_shell_executable', 'ansible_port', 'ansible_pipelining', 'ansible_password', 'ansible_timeout', 'ansible_shell_type', 'ansible_module_compression', 'ansible_private_key_file')))