no seu ansible.cfg
defina o seguinte:
[defaults]
# profile each task
callback_whitelist = profile_tasks
# [don't validate host keys](http://docs.ansible.com/ansible/intro_configuration.html#host-key-checking)
host_key_checking = False
[ssh_connection]
pipelining = True
Além disso, em sua cartilha, defina a estratégia como 'livre'
- hosts: all
strategy: free
tasks: [...]
Por fim, desative a coleta de fatos no seu jogo: gather_facts: false
Se, depois de criar o perfil, você está vendo muito isso:
TASK [pip foo]
ok: [10.192.197.252] => (item=ansible)
ok: [10.192.197.252] => (item=boto)
ok: [10.192.197.252] => (item=boto3)
ok: [10.192.197.252] => (item=passlib)
ok: [10.192.197.252] => (item=cryptography)
esmague essas ações em ansible.cfg
em [defaults]:
por exemplo. squash_actions = yum,pip,bar