diff options
author | Gabriel Filion <lelutin@gmail.com> | 2010-10-25 11:58:27 -0400 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2010-10-25 14:14:26 -0400 |
commit | 26714ae4d2992c85082ec37e6c40d725d097f79a (patch) | |
tree | 3cac30251cfc763eb2ec9ca1c0fbb3446c0fdc98 /templates | |
parent | e2578c3b9820e9ff17f8a8881b8b22b5e241ee21 (diff) |
Include the protocol in the proxy URL
The current proxy_client template makes it possible to communicate with
the proxy only via HTTP. Add the protocol to the variable so that it's
possible to change the protocol.
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/20proxy.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/20proxy.erb b/templates/20proxy.erb index 36b26a0..8f57e73 100644 --- a/templates/20proxy.erb +++ b/templates/20proxy.erb @@ -1,4 +1,4 @@ # This file is brought to you by Puppet # all local modifications will be overwritten -Acquire::http { Proxy "http://<%= real_apt_proxy %>:<%= real_apt_proxy_port %>"; }; +Acquire::http { Proxy "<%= real_apt_proxy %>:<%= real_apt_proxy_port %>"; }; |