3

This is basically the same question as how to see ansible stdout only I wanted to see the commands generated and passed in by ansible. Is it possible?

2 Answers2

1

You can see the commands Ansible uses by appending multiple -v switches to the command line, so -vvvv is the most verbose logging possible.

Tom O'Connor
  • 27,578
1

Ansible modules are copied to $HOME/.ansible/tmp/ and cleared down after use.

xddsg
  • 3,540