2012-03-22 03:18:57 +01:00
|
|
|
# (C) 2012, Michael DeHaan, <michael.dehaan@gmail.com>
|
|
|
|
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import utils
|
2012-03-30 22:17:16 +02:00
|
|
|
import sys
|
2012-04-02 23:46:02 +02:00
|
|
|
import getpass
|
2012-05-26 17:52:01 +02:00
|
|
|
import os
|
|
|
|
import subprocess
|
2012-03-22 03:18:57 +01:00
|
|
|
|
2012-07-15 18:29:53 +02:00
|
|
|
cowsay = None
|
|
|
|
if os.path.exists("/usr/bin/cowsay"):
|
|
|
|
cowsay = "/usr/bin/cowsay"
|
|
|
|
elif os.path.exists("/usr/games/cowsay"):
|
|
|
|
cowsay = "/usr/games/cowsay"
|
2012-03-22 03:18:57 +01:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
class AggregateStats(object):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' holds stats about per-host activity during playbook runs '''
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def __init__(self):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
self.processed = {}
|
|
|
|
self.failures = {}
|
|
|
|
self.ok = {}
|
|
|
|
self.dark = {}
|
|
|
|
self.changed = {}
|
|
|
|
self.skipped = {}
|
|
|
|
|
|
|
|
def _increment(self, what, host):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' helper function to bump a statistic '''
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
self.processed[host] = 1
|
|
|
|
prev = (getattr(self, what)).get(host, 0)
|
|
|
|
getattr(self, what)[host] = prev+1
|
|
|
|
|
|
|
|
def compute(self, runner_results, setup=False, poll=False):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' walk through all results and increment stats '''
|
2012-03-26 01:05:27 +02:00
|
|
|
|
|
|
|
for (host, value) in runner_results.get('contacted', {}).iteritems():
|
|
|
|
if ('failed' in value and bool(value['failed'])) or ('rc' in value and value['rc'] != 0):
|
|
|
|
self._increment('failures', host)
|
|
|
|
elif 'skipped' in value and bool(value['skipped']):
|
|
|
|
self._increment('skipped', host)
|
|
|
|
elif 'changed' in value and bool(value['changed']):
|
2012-04-26 20:34:49 +02:00
|
|
|
if not setup and not poll:
|
2012-03-26 01:05:27 +02:00
|
|
|
self._increment('changed', host)
|
|
|
|
self._increment('ok', host)
|
|
|
|
else:
|
|
|
|
if not poll or ('finished' in value and bool(value['finished'])):
|
|
|
|
self._increment('ok', host)
|
|
|
|
|
|
|
|
for (host, value) in runner_results.get('dark', {}).iteritems():
|
|
|
|
self._increment('dark', host)
|
|
|
|
|
|
|
|
|
|
|
|
def summarize(self, host):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' return information about a particular host '''
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
return dict(
|
|
|
|
ok = self.ok.get(host, 0),
|
|
|
|
failures = self.failures.get(host, 0),
|
|
|
|
unreachable = self.dark.get(host,0),
|
|
|
|
changed = self.changed.get(host, 0),
|
|
|
|
skipped = self.skipped.get(host, 0)
|
|
|
|
)
|
|
|
|
|
2012-03-27 04:05:11 +02:00
|
|
|
########################################################################
|
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
def regular_generic_msg(hostname, result, oneline, caption):
|
|
|
|
''' output on the result of a module run that is not command '''
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
if not oneline:
|
|
|
|
return "%s | %s >> %s\n" % (hostname, caption, utils.jsonify(result,format=True))
|
|
|
|
else:
|
|
|
|
return "%s | %s >> %s\n" % (hostname, caption, utils.jsonify(result))
|
|
|
|
|
|
|
|
|
2012-05-26 17:52:01 +02:00
|
|
|
def banner(msg):
|
2012-07-12 11:14:15 +02:00
|
|
|
|
2012-07-15 18:29:53 +02:00
|
|
|
if cowsay != None:
|
|
|
|
cmd = subprocess.Popen("%s -W 60 \"%s\"" % (cowsay, msg),
|
2012-05-26 17:52:01 +02:00
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
|
|
|
|
(out, err) = cmd.communicate()
|
2012-07-15 18:29:53 +02:00
|
|
|
return "%s\n" % out
|
2012-05-26 17:52:01 +02:00
|
|
|
else:
|
2012-07-15 18:29:53 +02:00
|
|
|
return "\n%s ********************* " % msg
|
2012-07-15 16:12:49 +02:00
|
|
|
|
|
|
|
def command_generic_msg(hostname, result, oneline, caption):
|
|
|
|
''' output the result of a command run '''
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
rc = result.get('rc', '0')
|
|
|
|
stdout = result.get('stdout','')
|
|
|
|
stderr = result.get('stderr', '')
|
|
|
|
msg = result.get('msg', '')
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
if not oneline:
|
|
|
|
buf = "%s | %s | rc=%s >>\n" % (hostname, caption, result.get('rc',0))
|
|
|
|
if stdout:
|
|
|
|
buf += stdout
|
|
|
|
if stderr:
|
|
|
|
buf += stderr
|
|
|
|
if msg:
|
|
|
|
buf += msg
|
2012-07-15 18:29:53 +02:00
|
|
|
return buf + "\n"
|
2012-07-15 16:12:49 +02:00
|
|
|
else:
|
|
|
|
if stderr:
|
|
|
|
return "%s | %s | rc=%s | (stdout) %s (stderr) %s\n" % (hostname, caption, rc, stdout, stderr)
|
|
|
|
else:
|
|
|
|
return "%s | %s | rc=%s | (stdout) %s\n" % (hostname, caption, rc, stdout)
|
|
|
|
|
|
|
|
def host_report_msg(hostname, module_name, result, oneline):
|
|
|
|
''' summarize the JSON results for a particular host '''
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
failed = utils.is_failed(result)
|
|
|
|
if module_name in [ 'command', 'shell', 'raw' ] and 'ansible_job_id' not in result:
|
|
|
|
if not failed:
|
|
|
|
return command_generic_msg(hostname, result, oneline, 'success')
|
|
|
|
else:
|
|
|
|
return command_generic_msg(hostname, result, oneline, 'FAILED')
|
|
|
|
else:
|
|
|
|
if not failed:
|
|
|
|
return regular_generic_msg(hostname, result, oneline, 'success')
|
|
|
|
else:
|
|
|
|
return regular_generic_msg(hostname, result, oneline, 'FAILED')
|
|
|
|
|
|
|
|
|
|
|
|
###############################################
|
2012-05-26 17:52:01 +02:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
class DefaultRunnerCallbacks(object):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' no-op callbacks for API usage of Runner() if no callbacks are specified '''
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-03-22 03:18:57 +01:00
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def on_failed(self, host, res):
|
|
|
|
pass
|
2012-03-22 03:18:57 +01:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def on_ok(self, host, res):
|
|
|
|
pass
|
2012-03-22 03:18:57 +01:00
|
|
|
|
2012-03-31 17:45:29 +02:00
|
|
|
def on_error(self, host, msg):
|
|
|
|
pass
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def on_skipped(self, host):
|
|
|
|
pass
|
2012-03-22 03:18:57 +01:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
def on_unreachable(self, host, res):
|
|
|
|
pass
|
|
|
|
|
2012-04-12 03:05:46 +02:00
|
|
|
def on_no_hosts(self):
|
|
|
|
pass
|
|
|
|
|
2012-04-26 20:34:49 +02:00
|
|
|
def on_async_poll(self, host, res, jid, clock):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def on_async_ok(self, host, res, jid):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def on_async_failed(self, host, res, jid):
|
|
|
|
pass
|
|
|
|
|
2012-03-27 04:05:11 +02:00
|
|
|
########################################################################
|
|
|
|
|
2012-03-27 03:17:11 +02:00
|
|
|
class CliRunnerCallbacks(DefaultRunnerCallbacks):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' callbacks for use by /usr/bin/ansible '''
|
2012-03-27 03:17:11 +02:00
|
|
|
|
|
|
|
def __init__(self):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-03-27 03:17:11 +02:00
|
|
|
# set by /usr/bin/ansible later
|
|
|
|
self.options = None
|
2012-04-30 09:47:04 +02:00
|
|
|
self._async_notified = {}
|
2012-03-27 03:17:11 +02:00
|
|
|
|
|
|
|
def on_failed(self, host, res):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-06-20 03:55:57 +02:00
|
|
|
self._on_any(host,res)
|
2012-03-27 03:17:11 +02:00
|
|
|
|
|
|
|
def on_ok(self, host, res):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-06-20 03:55:57 +02:00
|
|
|
self._on_any(host,res)
|
2012-03-27 03:17:11 +02:00
|
|
|
|
|
|
|
def on_unreachable(self, host, res):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-05-26 00:44:29 +02:00
|
|
|
if type(res) == dict:
|
|
|
|
res = res.get('msg','')
|
2012-03-27 03:17:11 +02:00
|
|
|
print "%s | FAILED => %s" % (host, res)
|
|
|
|
if self.options.tree:
|
2012-07-15 16:12:49 +02:00
|
|
|
utils.write_tree_file(
|
|
|
|
self.options.tree, host,
|
|
|
|
utils.jsonify(dict(failed=True, msg=res),format=True)
|
|
|
|
)
|
2012-03-27 03:17:11 +02:00
|
|
|
|
|
|
|
def on_skipped(self, host):
|
|
|
|
pass
|
|
|
|
|
2012-03-31 17:45:29 +02:00
|
|
|
def on_error(self, host, err):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-27 07:25:38 +02:00
|
|
|
print >>sys.stderr, "err: [%s] => %s\n" % (host, err)
|
2012-04-12 03:05:46 +02:00
|
|
|
|
|
|
|
def on_no_hosts(self):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-12 03:05:46 +02:00
|
|
|
print >>sys.stderr, "no hosts matched\n"
|
2012-03-31 17:45:29 +02:00
|
|
|
|
2012-04-26 20:34:49 +02:00
|
|
|
def on_async_poll(self, host, res, jid, clock):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-30 09:47:04 +02:00
|
|
|
if jid not in self._async_notified:
|
|
|
|
self._async_notified[jid] = clock + 1
|
|
|
|
if self._async_notified[jid] > clock:
|
|
|
|
self._async_notified[jid] = clock
|
|
|
|
print "<job %s> polling, %ss remaining"%(jid, clock)
|
2012-04-26 20:34:49 +02:00
|
|
|
|
|
|
|
def on_async_ok(self, host, res, jid):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
print "<job %s> finished on %s => %s"%(jid, host, utils.jsonify(res,format=True))
|
2012-04-26 20:34:49 +02:00
|
|
|
|
|
|
|
def on_async_failed(self, host, res, jid):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
print "<job %s> FAILED on %s => %s"%(jid, host, utils.jsonify(res,format=True))
|
2012-04-26 20:34:49 +02:00
|
|
|
|
2012-03-27 03:17:11 +02:00
|
|
|
def _on_any(self, host, result):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 16:12:49 +02:00
|
|
|
print host_report_msg(host, self.options.module_name, result, self.options.one_line)
|
2012-03-27 03:17:11 +02:00
|
|
|
if self.options.tree:
|
2012-07-15 16:12:49 +02:00
|
|
|
utils.write_tree_file(self.options.tree, host, utils.json(result,format=True))
|
2012-03-27 03:17:11 +02:00
|
|
|
|
2012-03-27 04:05:11 +02:00
|
|
|
########################################################################
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' callbacks used for Runner() from /usr/bin/ansible-playbook '''
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-06-20 03:55:57 +02:00
|
|
|
def __init__(self, stats, verbose=False):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
self.stats = stats
|
2012-04-30 09:47:04 +02:00
|
|
|
self._async_notified = {}
|
2012-06-20 03:55:57 +02:00
|
|
|
self.verbose = verbose
|
2012-03-22 03:18:57 +01:00
|
|
|
|
|
|
|
def on_unreachable(self, host, msg):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-27 07:25:38 +02:00
|
|
|
print "fatal: [%s] => %s" % (host, msg)
|
2012-03-22 03:18:57 +01:00
|
|
|
|
|
|
|
def on_failed(self, host, results):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-16 12:43:37 +02:00
|
|
|
print "failed: [%s] => %s" % (host, utils.jsonify(results))
|
2012-03-22 03:18:57 +01:00
|
|
|
|
|
|
|
def on_ok(self, host, host_result):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-06-20 03:55:57 +02:00
|
|
|
# show verbose output for non-setup module results if --verbose is used
|
|
|
|
if not self.verbose or host_result.get("verbose_override",None) is not None:
|
2012-07-11 10:35:10 +02:00
|
|
|
print "ok: [%s]" % (host)
|
2012-03-22 03:18:57 +01:00
|
|
|
else:
|
2012-07-15 16:12:49 +02:00
|
|
|
print "ok: [%s] => %s" % (host, utils.jsonify(host_result))
|
2012-03-22 03:18:57 +01:00
|
|
|
|
2012-03-30 22:17:16 +02:00
|
|
|
def on_error(self, host, err):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-16 12:43:37 +02:00
|
|
|
print >>sys.stderr, "err: [%s] => %s" % (host, err)
|
2012-03-30 22:17:16 +02:00
|
|
|
|
2012-03-24 01:51:15 +01:00
|
|
|
def on_skipped(self, host):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-16 12:43:37 +02:00
|
|
|
print "skipping: [%s]" % host
|
2012-03-24 01:51:15 +01:00
|
|
|
|
2012-04-12 03:05:46 +02:00
|
|
|
def on_no_hosts(self):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-12 03:05:46 +02:00
|
|
|
print "no hosts matched or remaining\n"
|
|
|
|
|
2012-04-26 20:34:49 +02:00
|
|
|
def on_async_poll(self, host, res, jid, clock):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-30 09:47:04 +02:00
|
|
|
if jid not in self._async_notified:
|
|
|
|
self._async_notified[jid] = clock + 1
|
|
|
|
if self._async_notified[jid] > clock:
|
|
|
|
self._async_notified[jid] = clock
|
|
|
|
print "<job %s> polling, %ss remaining"%(jid, clock)
|
2012-04-26 20:34:49 +02:00
|
|
|
|
|
|
|
def on_async_ok(self, host, res, jid):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-26 20:34:49 +02:00
|
|
|
print "<job %s> finished on %s"%(jid, host)
|
|
|
|
|
|
|
|
def on_async_failed(self, host, res, jid):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-26 20:34:49 +02:00
|
|
|
print "<job %s> FAILED on %s"%(jid, host)
|
|
|
|
|
2012-03-27 04:05:11 +02:00
|
|
|
########################################################################
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
class PlaybookCallbacks(object):
|
2012-03-27 04:05:11 +02:00
|
|
|
''' playbook.py callbacks used by /usr/bin/ansible-playbook '''
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-06-20 03:55:57 +02:00
|
|
|
def __init__(self, verbose=False):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-06-20 03:55:57 +02:00
|
|
|
self.verbose = verbose
|
2012-03-26 01:05:27 +02:00
|
|
|
|
|
|
|
def on_start(self):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-11 10:35:10 +02:00
|
|
|
pass
|
2012-03-26 01:05:27 +02:00
|
|
|
|
|
|
|
def on_notify(self, host, handler):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
def on_task_start(self, name, is_conditional):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-15 14:50:23 +02:00
|
|
|
msg = "TASK: [%s]" % name
|
|
|
|
if is_conditional:
|
2012-07-15 15:32:47 +02:00
|
|
|
msg = "NOTIFIED: [%s]" % name
|
2012-07-15 14:50:23 +02:00
|
|
|
print banner(msg)
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-04-02 23:46:02 +02:00
|
|
|
def on_vars_prompt(self, varname, private=True):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-04-02 23:46:02 +02:00
|
|
|
msg = 'input for %s: ' % varname
|
|
|
|
if private:
|
|
|
|
return getpass.getpass(msg)
|
|
|
|
return raw_input(msg)
|
|
|
|
|
2012-07-14 18:24:19 +02:00
|
|
|
def on_setup(self):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-07-14 18:24:19 +02:00
|
|
|
print banner("GATHERING FACTS")
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-03-22 03:18:57 +01:00
|
|
|
def on_import_for_host(self, host, imported_file):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-03-22 03:18:57 +01:00
|
|
|
print "%s: importing %s" % (host, imported_file)
|
|
|
|
|
|
|
|
def on_not_import_for_host(self, host, missing_file):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-03-22 03:18:57 +01:00
|
|
|
print "%s: not importing file: %s" % (host, missing_file)
|
|
|
|
|
|
|
|
def on_play_start(self, pattern):
|
2012-07-15 18:29:53 +02:00
|
|
|
|
2012-05-26 17:52:01 +02:00
|
|
|
print banner("PLAY [%s]" % pattern)
|
2012-07-15 18:29:53 +02:00
|
|
|
|
|
|
|
|