
Initial commit for puppet-setproxy module Depends-On: Ib12c282ee3863aba16dbd9ced6ce975e1f572a5c Change-Id: I199ab36ccb850e9f6a5353feb4bd1946ed2a7eb5
12 lines
283 B
Plaintext
12 lines
283 B
Plaintext
<% if @http_proxy -%>
|
|
export http_proxy=<%= @http_proxy %>
|
|
export HTTP_PROXY=<%= @http_proxy %>
|
|
<% end -%>
|
|
<% if @https_proxy -%>
|
|
export https_proxy=<%= @https_proxy %>
|
|
export HTTPS_PROXY=<%= @https_proxy %>
|
|
<% end -%>
|
|
<% if @no_proxy -%>
|
|
export no_proxy=<%= @no_proxy %>
|
|
<% end -%>
|