I am running an ansible script using ansible-pull
on a remote machine(client side) which I can't see .
I want to make sure that :
- ansible playbook are executed successfully then should send summary
- ansible playbook if not executed successfully should send summary of what failed
Enabling ansible logs store information in some log file but was wondering if I can get the results of below ansible output via some variables predefined in ansible.
PLAY [localhost] **************************************************************
GATHERING FACTS ***************************************************************
ok: [localhost]
TASK: [Install the hello package] *********************************************
ok: [localhost] => {"changed": false}
TASK: [Install the cmatrix package] *******************************************
ok: [localhost] => {"changed": false}
PLAY RECAP ********************************************************************
localhost : ok=3 changed=0 unreachable=0 failed=0
If not then I will have to write the custom scripts to parse the logs , save information in some db on machine and send it back to our servers .