~tribaal/charms/trusty/odl-controller/retry-on-client-call-error

« back to all changes in this revision

Viewing changes to templates/settings.xml

  • Committer: Robert Ayres
  • Date: 2015-02-19 22:08:13 UTC
  • Revision ID: robert.ayres@canonical.com-20150219220813-tb9hek7sppu2i3g2
Initial charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
[ WARNING ]
 
3
Configuration file maintained by Juju. Local changes may be overwritten.
 
4
-->
 
5
<settings>
 
6
  <proxies>
 
7
  {%- if http_proxy %}
 
8
    <proxy>
 
9
      <id>http_proxy</id>
 
10
      <active>true</active>
 
11
      <protocol>http</protocol>
 
12
      <host>{{ http_proxy_host }}</host>
 
13
      <port>{{ http_proxy_port }}</port>
 
14
    {%- if http_proxy_username %}
 
15
      <username>{{ http_proxy_username }}</username>
 
16
      <password>{{ http_proxy_password }}</password>
 
17
    {%- endif %}
 
18
      <nonProxyHosts>{{ http_noproxy|join("|") }}</nonProxyHosts>
 
19
    </proxy>
 
20
  {%- endif %}
 
21
  {%- if https_proxy %}
 
22
    <proxy>
 
23
      <id>https_proxy</id>
 
24
      <active>true</active>
 
25
      <protocol>https</protocol>
 
26
      <host>{{ https_proxy_host }}</host>
 
27
      <port>{{ https_proxy_port }}</port>
 
28
    {%- if https_proxy_username %}
 
29
      <username>{{ https_proxy_username }}</username>
 
30
      <password>{{ https_proxy_password }}</password>
 
31
    {%- endif %}
 
32
      <nonProxyHosts>{{ https_noproxy|join("|") }}</nonProxyHosts>
 
33
    </proxy>
 
34
  {%- endif %}
 
35
  </proxies>
 
36
</settings>
 
37