summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2015-05-25 11:01:07 -0400
committerBrian Coca <bcoca@ansible.com>2015-05-25 11:01:07 -0400
commit544ece20a890a4f9694103b251d8607e879530ac (patch)
tree54ecb9c61ceadbe0f538d4ff1a7806499bf13a22
parent0f0f28145b908419eeb699d5809b7f2ce66f8a22 (diff)
parent308879075d60118537080ca1fd63bf78be19150a (diff)
downloadansible-544ece20a890a4f9694103b251d8607e879530ac.tar.gz
Merge pull request #11063 from mmoya/remove-duplicate-constants
Remove duplicate RETRY_FILES_* constants
-rw-r--r--v2/ansible/constants.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/v2/ansible/constants.py b/v2/ansible/constants.py
index 456beb8bbc..245972b1a5 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")