mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Example plugin to send out mails on error
This is useful mostly for playbooks that run unattended and for a limited set of systems. In case of provisioninging this plugin (together with a final mail action) helps to get notified when something went wrong, or when the installation finished successfully. Unfortunately, there is no way to enable/disable a plugin from a playbook. So installing the plugin means all other use-cases (provisioning, troubleshooting, reporting or management) all send mails on failure. Something we may want to fix in the future...
This commit is contained in:
parent
7788dea238
commit
bb58d3f20c
1 changed files with 83 additions and 0 deletions
83
plugins/callbacks/mail.py
Normal file
83
plugins/callbacks/mail.py
Normal file
|
@ -0,0 +1,83 @@
|
|||
# Copyright 2012 Dag Wieers <dag@wieers.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 smtplib
|
||||
|
||||
def mail(subject='Ansible error mail', sender='root', to='root', cc=None, bcc=None, body=None):
|
||||
if not body:
|
||||
body = subject
|
||||
|
||||
smtp = smtplib.SMTP('localhost')
|
||||
|
||||
content = 'From: %s\n' % sender
|
||||
content += 'To: %s\n' % to
|
||||
if cc:
|
||||
content += 'Cc: %s\n' % cc
|
||||
content += 'Subject: %s\n\n' % subject
|
||||
content += body
|
||||
|
||||
addresses = to.split(',')
|
||||
if cc:
|
||||
addresses += cc.split(',')
|
||||
if bcc:
|
||||
addresses += bcc.split(',')
|
||||
|
||||
for address in addresses:
|
||||
smtp.sendmail(sender, address, content)
|
||||
|
||||
smtp.quit()
|
||||
|
||||
|
||||
class CallbackModule(object):
|
||||
|
||||
"""
|
||||
This Ansible callback plugin mails errors to interested parties.
|
||||
"""
|
||||
|
||||
def runner_on_failed(self, host, res, ignore_errors=False):
|
||||
if ignore_errors:
|
||||
return
|
||||
sender = 'Ansible error on %s' % host
|
||||
subject = 'Failure: %s' % res['msg'].split('\n')[0]
|
||||
mail(sender=sender, subject=subject,
|
||||
body='''The following task failed for host %s:
|
||||
|
||||
%s %s
|
||||
|
||||
with the following error message:
|
||||
|
||||
%s
|
||||
|
||||
A complete dump of the error:
|
||||
|
||||
%s''' % (host, res['invocation']['module_name'], res['invocation']['module_args'], res['msg'], res)
|
||||
)
|
||||
|
||||
def runner_on_error(self, host, msg):
|
||||
sender = 'Ansible: %s <root>' % host
|
||||
subject = 'Error: %s' % res['msg'].split('\n')[0]
|
||||
mail(sender=sender, subject=subject, body=msg)
|
||||
|
||||
def runner_on_unreachable(self, host, res):
|
||||
sender = 'Ansible: %s <root>' % host
|
||||
subject = 'Unreachable: %s' % res.split('\n')[0]
|
||||
mail(sender=sender, subject=subject, body=res)
|
||||
|
||||
def runner_on_async_failed(self, host, res, jid):
|
||||
sender = 'Ansible: %s <root>' % host
|
||||
subject = 'Async failure: %s' % res.split('\n')[0]
|
||||
mail(sender=sender, subject=subject, body=res)
|
Loading…
Reference in a new issue