mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 09:13:12 +00:00
Merge pull request #1315 from dagwieers/mail-callback-improvement
This should set the sender properly.
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
import smtplib
|
||||
|
||||
def mail(subject='Ansible error mail', sender='root', to='root', cc=None, bcc=None, body=None):
|
||||
def mail(subject='Ansible error mail', sender='<root>', to='root', cc=None, bcc=None, body=None):
|
||||
if not body:
|
||||
body = subject
|
||||
|
||||
@@ -51,7 +51,7 @@ class CallbackModule(object):
|
||||
def runner_on_failed(self, host, res, ignore_errors=False):
|
||||
if ignore_errors:
|
||||
return
|
||||
sender = 'Ansible error on %s' % host
|
||||
sender = 'Ansible error on %s <root>' % host
|
||||
subject = 'Failure: %s' % res['msg'].split('\n')[0]
|
||||
mail(sender=sender, subject=subject,
|
||||
body='''The following task failed for host %s:
|
||||
|
||||
Reference in New Issue
Block a user