forked from evolvingweb/puppet-apt
-
Notifications
You must be signed in to change notification settings - Fork 468
Open
Description
Currently the template(https://github.com/puppetlabs/puppetlabs-apt/blob/main/templates/proxy.epp) statically defines the http and https proxy to be http and https respectively. It should instead allow you to be able to specify the entire proxy value so you can easily make the http proxy in apt a https proxy or otherwise as you choose.
So the following hiera data:
apt::proxy:
host: 'webproxy.example.com'
port: 3128
https: true
results in
Acquire::http::proxy "http://webproxy.example.com:3128";
Acquire::https::proxy "https://webproxy.example.com:3128";
Ideally it should be able to result in:
Acquire::http::proxy "http://webproxy.example.com:3128";
Acquire::https::proxy "http://webproxy.example.com:3128";
Metadata
Metadata
Assignees
Labels
No labels