Hi,
I’m new to Ansible. We’re evaluating configuration management tools that can work in our mixed Linux / windows environment. I’ve been through these tutorials so far:
http://docs.ansible.com/intro_getting_started.html
http://docs.ansible.com/intro_windows.html
I am able to successfully win_ping using this command:
ansible windows -m win_ping
153.61.152.179 | success >> {
“changed”: false,
“ping”: “pong”
}
When I try to copy a file using win_copy I get this error output:
ansible windows -m win_copy -a “src=/bob.txt dest=c:\bob.tt”
153.61.152.179 | FAILED => module win_copy not found in configured module paths. Additionally, core modules are missing. If this is a checkout, run ‘git submodule update --init --recursive’ to correct this problem.
This is what I see when I look for the ansible version:
ansible --version
ansible 1.9.1
configured module search path = None
I need guidance on what my next steps should be. This is a new tool and a new community of users for me, so please let me know if I’ve missed something. I’m looking for help to know what to do next.
Thanks!