I need to do some custom things, (e.g. git pull/pip install -r requirements) on windows. I was able to connect to the machine over kerberos. But those modules don’t seem to work on Windows. It’s weird b/c the scripts module does work and not listed under windows modules available to use. My question is, how can i achieve this goal and/or is there a “commands” equivalent for windows?
I thought it was a python path issue, so I added:
vars:
ansible_python_interpreter: “C:\Python34\python.exe”
After adding that, I get the following:
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ImportError: No module named ‘grp’
fatal: [qa-codegen01.theorchard.local]: FAILED! => {“changed”: false, “failed”: true, “parsed”: false}
Are we limited to the amount of modules avail for windows?