Yeah. Here's the result of all those:
trevor:~ $ ansible apps01 -m ping -i inventory.conf
apps01 | FAILED => unsupported connection type: ssh
trevor:~ $ ansible apps01 -c paramiko -m ping -i inventory.conf
apps01 | FAILED => unsupported connection type: paramiko
trevor:~ $ ansible localhost -c local -m ping -i inventory.conf
localhost | FAILED => unsupported connection type: local
trevor:~ $ more inventory.conf
[apps]
apps01
I tried uninstalling and reinstalling ansible as well.
trevor:~ $ ansible localhost -c local -m ping -i inventory.conf
localhost | FAILED => unsupported connection type: local
I'm not sure if this could be a Yosemite issue.
---------
Ok, I did another clean install, this time via `
sudo pip install ansible`. The pip installation pulled down version 1.8.2. It looks like that is now working with my laptop. I'm guessing it was in issue with 1.7.1.
trevor:~ $ ansible --version
ansible 1.8.2
configured module search path = None
trevor:~ $ ansible localhost -c local -m ping -i inventory.conf
localhost | success >> {
"changed": false,
"ping": "pong"
}
Thanks!
Trevor