From f9da7cb180930559bf4ed70f173f7f0b18b1ade7 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 26 Mar 2012 21:56:18 -0400 Subject: [PATCH] remove functions that are no longer used --- lib/ansible/utils.py | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/lib/ansible/utils.py b/lib/ansible/utils.py index ec2924a4e0..7f602f88f9 100755 --- a/lib/ansible/utils.py +++ b/lib/ansible/utils.py @@ -147,28 +147,6 @@ def host_report_msg(hostname, module_name, result, oneline): buf = regular_failure_msg(hostname, result, oneline) return buf -# FIXME: needed? ... may be able to eliminate many of these... - -def has_dark_hosts(results): - ''' are there any uncontactable hosts? ''' - return len(results['dark'].keys()) > 0 - -def has_contacted_hosts(results): - ''' are there any contacted hosts? ''' - return len(results['contacted'].keys()) > 0 - -def has_hosts(results): - ''' did ansible run against any hosts at all? ''' - return has_contacted_hosts(results) or has_dark_hosts(results) - -def contacted_hosts(results): - ''' what are the contactable hosts? ''' - return sorted(results['contacted']) - -def contacted_host_result(results, hostname): - ''' what are the results for a given host? ''' - return results['contacted'][hostname] - def prepare_writeable_dir(tree): ''' make sure a directory exists and is writeable ''' if tree != '/':