voxpupuli / puppet-wget

A puppet recipe for wget, a useful tool to download arbitary files from the web
Apache License 2.0
41 stars 114 forks source link

Errors when enabling strict_variables #62

Closed Joris-van-der-Wel closed 9 years ago

Joris-van-der-Wel commented 9 years ago

This module seems to use three global variables which puppet 4 will complain about if strict_variables is true:

As a workaround I have to add the following to site.pp:

$http_proxy = undef
$https_proxy = undef
$schedule = undef

Related to #45

carlossg commented 9 years ago

see #61