search for: puppet_module_provid

Displaying 2 results from an estimated 2 matches for "puppet_module_provid".

Did you mean: puppet_module_provider
2013 Mar 15
3
Installing puppet modules
...url => "$url", checksum => false, extension => "tar.gz", target => split("$::modulepath", ":")[0], } But that doesn''t work. 2) There is another module called puppet_module (https://github.com/rcoleman/puppet_module_provider) which allows you to download and install modules from puppetforge. This module works great. Except that I need to download modules from an intranet location not an internet location. I do not have control over puppetforge so I do not have control over how long stuff stays up there, when it...
2013 Mar 15
0
Installing module of the correct version
...checksum => false, extension => "tar.gz", target => split("$::modulepath", ":")[0] + "/modules/", } But obviously I am a bit out of my league getting that to work. 2) Using the puppet module provider(https://github.com/rcoleman/puppet_module_provider) to download and install a module. This works great... if the module is on puppet forge. But I need to keep the connections local, for connectivity outages and backups in case third party modules disappear from their place on the internet. Also internal modules are not going to make it ou...