Quando tento rodar o hello word acontece o seguinte erro:
$ ansible wordpress -u vagrant --private-key config/id_rsa_vagrant -i config/ansible/hosts -m shell -a 'echo Hello word'
172.28.128.8 | FAILED! => {
"changed": false,
"module_stderr": "Shared connection to 172.28.128.8 closed.\r\n",
"module_stdout": "/bin/sh: 1: /usr/bin/python: not found\r\n",
"msg": "MODULE FAILURE",
"rc": 127
}
Consegui resolver adicionando a linha abaixo no Vagrantfile:
config.vm.provision :shell, inline: "apt-get -q update && apt-get -q install -y python"
Fica a dica.