Some minor from 'pep8', and silencing the PEP8 messages I don't care about.

Also make pep8 show all messages rather than just 1 per code.
pull/3/head
Michael DeHaan 13 years ago
parent 0d7a84d591
commit 3ad9db4966

@ -17,11 +17,14 @@ manuals: $(MANPAGES)
%.5: %.5.asciidoc %.5: %.5.asciidoc
$(ASCII2MAN) $(ASCII2MAN)
loc:
sloccount lib library bin
pep8: pep8:
@echo "#############################################" @echo "#############################################"
@echo "# Running PEP8 Compliance Tests" @echo "# Running PEP8 Compliance Tests"
@echo "#############################################" @echo "#############################################"
pep8 lib/ pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225 lib/ bin/
clean: clean:
rm -rf build rm -rf build

@ -14,4 +14,3 @@
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.

@ -25,7 +25,8 @@ import shlex
# duplicating these # duplicating these
class PlayBook(object): class PlayBook(object):
'''
'''
runs an ansible playbook, given as a datastructure runs an ansible playbook, given as a datastructure
or YAML filename. a playbook is a deployment, config or YAML filename. a playbook is a deployment, config
management, or automation based set of commands to management, or automation based set of commands to
@ -36,7 +37,7 @@ class PlayBook(object):
according to the number of forks requested. according to the number of forks requested.
''' '''
def __init__(self, def __init__(self,
playbook =None, playbook =None,
host_list =C.DEFAULT_HOST_LIST, host_list =C.DEFAULT_HOST_LIST,
module_path =C.DEFAULT_MODULE_PATH, module_path =C.DEFAULT_MODULE_PATH,
@ -92,13 +93,13 @@ class PlayBook(object):
'changed' : self.changed.get(host, 0), 'changed' : self.changed.get(host, 0),
'dark' : self.dark.get(host, 0), 'dark' : self.dark.get(host, 0),
'failed' : self.failures.get(host, 0) 'failed' : self.failures.get(host, 0)
} }
return results return results
def _prune_failed_hosts(self, host_list): def _prune_failed_hosts(self, host_list):
new_hosts = [] new_hosts = []
for x in host_list: for x in host_list:
if not self.failures.has_key(x) and not self.dark.has_key(x): if not x in self.failures and not x in self.dark:
new_hosts.append(x) new_hosts.append(x)
return new_hosts return new_hosts
@ -116,9 +117,9 @@ class PlayBook(object):
remote_user=remote_user remote_user=remote_user
).run() ).run()
def _run_task(self, pattern=None, task=None, host_list=None, def _run_task(self, pattern=None, task=None, host_list=None,
remote_user=None, handlers=None, conditional=False): remote_user=None, handlers=None, conditional=False):
''' '''
run a single task in the playbook and run a single task in the playbook and
recursively run any subtasks. recursively run any subtasks.
''' '''
@ -152,7 +153,8 @@ class PlayBook(object):
# load up an appropriate ansible runner to # load up an appropriate ansible runner to
# run the task in parallel # run the task in parallel
results = self._run_module(pattern, module_name, module_args, host_list, remote_user) results = self._run_module(pattern, module_name,
module_args, host_list, remote_user)
# if no hosts are matched, carry on, unlike /bin/ansible # if no hosts are matched, carry on, unlike /bin/ansible
# which would warn you about this # which would warn you about this
@ -171,7 +173,7 @@ class PlayBook(object):
self.processed[host] = 1 self.processed[host] = 1
if self.verbose: if self.verbose:
print "unreachable: [%s] => %s" % (host, msg) print "unreachable: [%s] => %s" % (host, msg)
if not self.dark.has_key(host): if not host in self.dark:
self.dark[host] = 1 self.dark[host] = 1
else: else:
self.dark[host] = self.dark[host] + 1 self.dark[host] = self.dark[host] + 1
@ -182,19 +184,19 @@ class PlayBook(object):
if is_failed(results): if is_failed(results):
if self.verbose: if self.verbose:
print "failed: [%s] => %s\n" % (host, smjson(results)) print "failed: [%s] => %s\n" % (host, smjson(results))
if not self.failures.has_key(host): if not host in self.failures:
self.failures[host] = 1 self.failures[host] = 1
else: else:
self.failures[host] = self.failures[host] + 1 self.failures[host] = self.failures[host] + 1
else: else:
if self.verbose: if self.verbose:
print "ok: [%s]\n" % host print "ok: [%s]\n" % host
if not self.invocations.has_key(host): if not host in self.invocations:
self.invocations[host] = 1 self.invocations[host] = 1
else: else:
self.invocations[host] = self.invocations[host] + 1 self.invocations[host] = self.invocations[host] + 1
if results.get('changed', False): if results.get('changed', False):
if not self.changed.has_key(host): if not host in self.changed:
self.changed[host] = 1 self.changed[host] = 1
else: else:
self.changed[host] = self.changed[host] + 1 self.changed[host] = self.changed[host] + 1
@ -209,7 +211,7 @@ class PlayBook(object):
for host, results in contacted.items(): for host, results in contacted.items():
if results.get('changed', False): if results.get('changed', False):
for subtask in subtasks: for subtask in subtasks:
self._flag_handler(handlers, subtask, host) self._flag_handler(handlers, subtask, host)
def _flag_handler(self, handlers, match_name, host): def _flag_handler(self, handlers, match_name, host):
''' '''
@ -227,7 +229,7 @@ class PlayBook(object):
if match_name == name: if match_name == name:
# flag the handler with the list of hosts # flag the handler with the list of hosts
# it needs to be run on, it will be run later # it needs to be run on, it will be run later
if not x.has_key("run"): if not run in x:
x['run'] = [] x['run'] = []
x['run'].append(host) x['run'].append(host)
@ -246,7 +248,7 @@ class PlayBook(object):
self.host_list, groups = ansible.runner.Runner.parse_hosts(host_file) self.host_list, groups = ansible.runner.Runner.parse_hosts(host_file)
if self.verbose: if self.verbose:
print "PLAY [%s] ****************************************\n" % pattern print "PLAY [%s] ****************************\n" % pattern
# run all the top level tasks, these get run on every node # run all the top level tasks, these get run on every node
@ -268,7 +270,7 @@ class PlayBook(object):
if type(task.get("run", None)) == list: if type(task.get("run", None)) == list:
self._run_task( self._run_task(
pattern=pattern, pattern=pattern,
task=task, task=task,
handlers=handlers, handlers=handlers,
host_list=task.get('run',[]), host_list=task.get('run',[]),
conditional=True, conditional=True,

@ -16,6 +16,8 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# #
################################################
try: try:
import json import json
except ImportError: except ImportError:
@ -26,9 +28,11 @@ import multiprocessing
import signal import signal
import os import os
import traceback import traceback
import paramiko # non-core dependency
import ansible.constants as C import ansible.constants as C
import Queue import Queue
import paramiko
################################################
def _executor_hook(job_queue, result_queue): def _executor_hook(job_queue, result_queue):
''' callback used by multiprocessing pool ''' ''' callback used by multiprocessing pool '''
@ -126,7 +130,7 @@ class Runner(object):
if fnmatch.fnmatch(host_name, subpattern): if fnmatch.fnmatch(host_name, subpattern):
return True return True
# or it could be a literal group name instead # or it could be a literal group name instead
if self.groups.has_key(subpattern): if subpattern in self.groups:
if host_name in self.groups[subpattern]: if host_name in self.groups[subpattern]:
return True return True
return False return False
@ -203,8 +207,8 @@ class Runner(object):
options = {} options = {}
for x in args: for x in args:
if x.find("=") != -1: if x.find("=") != -1:
k, v = x.split("=") k, v = x.split("=")
options[k]=v options[k]=v
return options return options
def _execute_copy(self, conn, host): def _execute_copy(self, conn, host):

@ -74,11 +74,11 @@ def command_generic_msg(hostname, result, oneline, caption):
if not oneline: if not oneline:
buf = "%s | %s | rc=%s >>\n" % (hostname, caption, result.get('rc',0)) buf = "%s | %s | rc=%s >>\n" % (hostname, caption, result.get('rc',0))
if stdout: if stdout:
buf += stdout buf += stdout
if stderr: if stderr:
buf += stderr buf += stderr
if msg: if msg:
buf += msg buf += msg
return buf return buf
else: else:
if stderr: if stderr:

Loading…
Cancel
Save