From 308879075d60118537080ca1fd63bf78be19150a Mon Sep 17 00:00:00 2001 From: Maykel Moya Date: Mon, 25 May 2015 16:26:37 +0200 Subject: [PATCH] Remove duplicate RETRY_FILES_* constants --- v2/ansible/constants.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/v2/ansible/constants.py b/v2/ansible/constants.py index 456beb8bbc4..245972b1a56 100644 --- a/v2/ansible/constants.py +++ b/v2/ansible/constants.py @@ -185,9 +185,6 @@ DEFAULT_LOAD_CALLBACK_PLUGINS = get_config(p, DEFAULTS, 'bin_ansible_callbacks' RETRY_FILES_ENABLED = get_config(p, DEFAULTS, 'retry_files_enabled', 'ANSIBLE_RETRY_FILES_ENABLED', True, boolean=True) RETRY_FILES_SAVE_PATH = get_config(p, DEFAULTS, 'retry_files_save_path', 'ANSIBLE_RETRY_FILES_SAVE_PATH', '~/') -RETRY_FILES_ENABLED = get_config(p, DEFAULTS, 'retry_files_enabled', 'ANSIBLE_RETRY_FILES_ENABLED', True, boolean=True) -RETRY_FILES_SAVE_PATH = get_config(p, DEFAULTS, 'retry_files_save_path', 'ANSIBLE_RETRY_FILES_SAVE_PATH', '~/') - # CONNECTION RELATED ANSIBLE_SSH_ARGS = get_config(p, 'ssh_connection', 'ssh_args', 'ANSIBLE_SSH_ARGS', None) ANSIBLE_SSH_CONTROL_PATH = get_config(p, 'ssh_connection', 'control_path', 'ANSIBLE_SSH_CONTROL_PATH', "%(directory)s/ansible-ssh-%%h-%%p-%%r")