Good morning,
I am running Ansible 2.0 on my Debian host machine.  I have successfully 
connected to my windows server 2008 m via ping and other types of playbooks.
I am currently attempting to run a playbook that grabs a program off of a 
shared network folder and installs it on the desired windows machine, but i 
get:

fatal: [GP1-LAB-OPSTST2]: FAILED! => {"changed": false, "failed": true, 
"msg": "The given Path (S:\\ClamWin\\clamwin-0.99.1-setup.exe) could not be 
found", "name": "S:\\ClamWin\\clamwin-0.99.1-setup.exe"}

That is clearly the path.
 
My playbook looks like this:

---    
- name: Install Clamwin
  hosts: WindowsOS
  tasks:
     - name: Install ClamWin
       win_package:
        path="S:\\ClamWin\clamwin-0.99.1-setup.exe"
        
product_id="HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\ClamWin
 
Free Antivirus_is1"
        Arguments="/install /passive /norestart"

Any ideas on what i am doing wrong as far as the syntax goes?

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/4e2863d8-7cdf-4a83-ade7-8033f6ae6354%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to