I am able to manually install this package from the command line on the windows host like this:
choco install C:\updater\GoogleChrome-AllUsers.26.0.1410.64.nupkg
But I’m not able to do it using the win_chocolatey module from a playbook:
win_chocolatey:
name: GoogleChrome-AllUsers
source: C:\updater\GoogleChrome-AllUsers.26.0.1410.64.nupkg
I’ve tried a couple different versions of the above syntax, but the error is always the same:
“Error checking installation status for the package GoogleChrome-AllUsers”
In the win_chocolatey documentation is says you can use “a path to a folder” for source, but it does not seem to work. I guess I could just use the win_command module instead, but I want to get some feedback before I abandon win_chocolatey. Thanks much for any help.