Ansible: How to mail attachments with files from remote hosts
I know how to email attachments but that is assuming that the files are on the ansible controller.
Multiple times in a day, I am asked to send log files on two different servers to certain people. I would like to run an Playbook that will just do that.
This is what I have so far:
---
- hosts: server1:server2
remote_user: joe
become: yes
become_method: sudo
tasks:
- name: Sending error and debug logs to Bob, Suzie
mail:
host: localhost
port: 25
subject: Logs from {{ ansible_hostname }}
body: Here are the logs that you have requested
from: webuser <webuser@something.com>
to:
- Bob Smith <bob@something.com>
- Suzie Owens <suzie@something.com>
attach:
- /var/www/stg.something.com/logs/debug.log
- /var/www/stg.something.com/logs/error.log
headers:
- Reply-To=webuser@something.com
charset: us-ascii
become: yes
become_user: webuser
become_method: sudo
delegate_to: localhost
I would assume that my issue is delegate_to. My question is what is the format to include server1 & server2?
email logging ansible yaml attachment
add a comment |
I know how to email attachments but that is assuming that the files are on the ansible controller.
Multiple times in a day, I am asked to send log files on two different servers to certain people. I would like to run an Playbook that will just do that.
This is what I have so far:
---
- hosts: server1:server2
remote_user: joe
become: yes
become_method: sudo
tasks:
- name: Sending error and debug logs to Bob, Suzie
mail:
host: localhost
port: 25
subject: Logs from {{ ansible_hostname }}
body: Here are the logs that you have requested
from: webuser <webuser@something.com>
to:
- Bob Smith <bob@something.com>
- Suzie Owens <suzie@something.com>
attach:
- /var/www/stg.something.com/logs/debug.log
- /var/www/stg.something.com/logs/error.log
headers:
- Reply-To=webuser@something.com
charset: us-ascii
become: yes
become_user: webuser
become_method: sudo
delegate_to: localhost
I would assume that my issue is delegate_to. My question is what is the format to include server1 & server2?
email logging ansible yaml attachment
add a comment |
I know how to email attachments but that is assuming that the files are on the ansible controller.
Multiple times in a day, I am asked to send log files on two different servers to certain people. I would like to run an Playbook that will just do that.
This is what I have so far:
---
- hosts: server1:server2
remote_user: joe
become: yes
become_method: sudo
tasks:
- name: Sending error and debug logs to Bob, Suzie
mail:
host: localhost
port: 25
subject: Logs from {{ ansible_hostname }}
body: Here are the logs that you have requested
from: webuser <webuser@something.com>
to:
- Bob Smith <bob@something.com>
- Suzie Owens <suzie@something.com>
attach:
- /var/www/stg.something.com/logs/debug.log
- /var/www/stg.something.com/logs/error.log
headers:
- Reply-To=webuser@something.com
charset: us-ascii
become: yes
become_user: webuser
become_method: sudo
delegate_to: localhost
I would assume that my issue is delegate_to. My question is what is the format to include server1 & server2?
email logging ansible yaml attachment
I know how to email attachments but that is assuming that the files are on the ansible controller.
Multiple times in a day, I am asked to send log files on two different servers to certain people. I would like to run an Playbook that will just do that.
This is what I have so far:
---
- hosts: server1:server2
remote_user: joe
become: yes
become_method: sudo
tasks:
- name: Sending error and debug logs to Bob, Suzie
mail:
host: localhost
port: 25
subject: Logs from {{ ansible_hostname }}
body: Here are the logs that you have requested
from: webuser <webuser@something.com>
to:
- Bob Smith <bob@something.com>
- Suzie Owens <suzie@something.com>
attach:
- /var/www/stg.something.com/logs/debug.log
- /var/www/stg.something.com/logs/error.log
headers:
- Reply-To=webuser@something.com
charset: us-ascii
become: yes
become_user: webuser
become_method: sudo
delegate_to: localhost
I would assume that my issue is delegate_to. My question is what is the format to include server1 & server2?
email logging ansible yaml attachment
email logging ansible yaml attachment
edited Dec 12 '18 at 9:31
imjoseangel
1,0142513
1,0142513
asked Nov 16 '18 at 20:41
JLLouthan
1116
1116
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Please use delegate_to: "{{ inventory_hostname }}"
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345092%2fansible-how-to-mail-attachments-with-files-from-remote-hosts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Please use delegate_to: "{{ inventory_hostname }}"
add a comment |
Please use delegate_to: "{{ inventory_hostname }}"
add a comment |
Please use delegate_to: "{{ inventory_hostname }}"
Please use delegate_to: "{{ inventory_hostname }}"
answered Dec 12 '18 at 2:56
Random_Automation
32317
32317
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345092%2fansible-how-to-mail-attachments-with-files-from-remote-hosts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown