diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-09-16 22:59:26 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-09-16 22:59:26 +0200 |
commit | 3f1bbf87bbcc3daa15cd7391b2949b5bf742781b (patch) | |
tree | e7c058c84b2d8aebb84db73bb00429cdf284fc13 /code/environments/production/modules/apt/templates/proxy.epp | |
parent | 852be73c92e8a950dd0c3514cadd67058717b212 (diff) | |
download | puppet.FWSECK-3f1bbf87bbcc3daa15cd7391b2949b5bf742781b.tar.gz puppet.FWSECK-3f1bbf87bbcc3daa15cd7391b2949b5bf742781b.tar.bz2 puppet.FWSECK-3f1bbf87bbcc3daa15cd7391b2949b5bf742781b.zip |
modules/apt: Ship puppetlabs-apt module v4.5.1.
Diffstat (limited to 'code/environments/production/modules/apt/templates/proxy.epp')
-rw-r--r-- | code/environments/production/modules/apt/templates/proxy.epp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/code/environments/production/modules/apt/templates/proxy.epp b/code/environments/production/modules/apt/templates/proxy.epp new file mode 100644 index 0000000..ee663cb --- /dev/null +++ b/code/environments/production/modules/apt/templates/proxy.epp @@ -0,0 +1,7 @@ +<%- | Hash $proxies | -%> +Acquire::http::proxy "http://<%= $proxies['host'] %>:<%= $proxies['port'] %>/"; +<%- if $proxies['https'] { %> +Acquire::https::proxy "https://<%= $proxies['host'] %>:<%= $proxies['port'] %>/"; +<%- } elsif $proxies['direct'] { -%> +Acquire::https::proxy "DIRECT"; +<%- } -%> |