Re: [ansible-project] Re: Using group module; "Failed to find required executable groupadd"

2014-11-17 Thread Michael DeHaan
Yes, -c local will force every host in your playbook to run locally. It's good for a simple playbook targetting localhost, but you shouldn't do it in general with playbooks targetting your whole infra. Glad you figured it out! On Wed, Nov 12, 2014 at 1:55 PM, Joshua Burke wrote: > Hello All,

[ansible-project] Re: Using group module; "Failed to find required executable groupadd"

2014-11-12 Thread Joshua Burke
Hello All, I found that the problem was my use of the "-c local" flag in my CLI invocation of the playbook. Additionally I upgraded from Ansible version 1.7.1 to version 1.7.2 Originally the command that failed was: *ansible-playbook -v -c local -i localhost someplaybook.yml* After changi