Le 2015-09-10 14:33, Amir Luzon a écrit :
I tried the following:* [ansible-playbook command] -e "log_path=./blabla.log" which did not work * [ansible-playbook command] -e "ANSIBLE_LOG_PATH=./blabla.log" which did not work as well
Reread carefully I tell about an environment variable not an ansible variable...
You should do something like : ANSIBLE_LOG_PATH="./blabla.log" ansible-playbook myprefered-playbook.yml or export ANSIBLE_LOG_PATH="./blabla.log" ansible-playbook myprefered-playbook.yml Regards, -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/538729cc9f5300b27235bf5a319ce09f%40lenhof.eu.org. For more options, visit https://groups.google.com/d/optout.
