<%
conf = node['apt_utils']['conf']['proxy']
-%>
<% if !conf['ftp'].nil? then -%>
Acquire::ftp::proxy "<%= conf['ftp'] %>";
<% end -%>
<% if !conf['http'].nil? then -%>
Acquire::http::proxy "<%= conf['http'] %>";
<% end -%>
<% if !conf['https'].nil? then -%>
Acquire::https::proxy "<%= conf['https'] %>";
<% end -%>
