summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2015-05-25 11:05:47 -0400
committerBrian Coca <brian.coca+git@gmail.com>2015-05-25 11:06:04 -0400
commiteaddc0b309bb55fec9fc72a0a4a073aedb3bc930 (patch)
tree2443f96fe9385c6a58149f13f0b5a132f3ecae53
parentd4a31e8d26e22f160a6a433fd6f21da8c0435b70 (diff)
downloadansible-eaddc0b309bb55fec9fc72a0a4a073aedb3bc930.tar.gz
removed duplicate retry config entries
-rw-r--r--lib/ansible/constants.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/ansible/constants.py b/lib/ansible/constants.py
index 9c1c820421..98f058e21c 100644
--- a/lib/ansible/constants.py
+++ b/lib/ansible/constants.py
@@ -188,9 +188,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")