Installing from a URL is a feature of msiexec rather than the puppet
provider. I think you're stuck using a file resource to download the .exe
and then installing from a local path (or serving directly from a UNC
path). It would be neat if the windows package provider could eat
puppet:/// sourc
Hi,
from the official documentation:
Additional Notes on Windows Packages
>
>- The source parameter is required, and must refer to a local .msi
>file, a file from a mapped drive, or a UNC path. You can distribute
>packages as file resources. Puppet URLs are not currently support
Hi,
I assume that you have the exe file within your module in the files folder.
Adopt the source attribute to the following:
source => 'puppet:
Put the exe in your module:
//files/
http://docs.puppetlabs.com/references/latest/type.html#file
hth,
Martin
On Aug 5, 2013, at 8:01 AM, cko wr
hi everyone, i'm trying to roll out an .exe file for the puppet package
provider "windows".
my manifest looks like this:
$package_source =
"http://puppet.local.domain/base_check_mk/windows/check-mk-agent-1.2.3i1.exe";
$package_name = "Check_MK Agent 1.2.3i1"
package { "$package_name"