diff options
author | Steve Milner <smilner@redhat.com> | 2017-05-12 12:15:23 -0400 |
---|---|---|
committer | Steve Milner <smilner@redhat.com> | 2017-05-12 12:15:23 -0400 |
commit | a3d7c072a8a8911d11ec42a313f78a8673a64ad8 (patch) | |
tree | 8d04dd42ed4d371be9955fa2784f0937b7ab85c1 /roles/docker | |
parent | 5bc2f017b1ad5b2e56842347e3338df862f9f927 (diff) | |
download | openshift-a3d7c072a8a8911d11ec42a313f78a8673a64ad8.tar.gz openshift-a3d7c072a8a8911d11ec42a313f78a8673a64ad8.tar.bz2 openshift-a3d7c072a8a8911d11ec42a313f78a8673a64ad8.tar.xz openshift-a3d7c072a8a8911d11ec42a313f78a8673a64ad8.zip |
Fix whistespace issues in custom template
Diffstat (limited to 'roles/docker')
-rw-r--r-- | roles/docker/templates/systemcontainercustom.conf.j2 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/docker/templates/systemcontainercustom.conf.j2 b/roles/docker/templates/systemcontainercustom.conf.j2 index 1faad506a..b727c57d4 100644 --- a/roles/docker/templates/systemcontainercustom.conf.j2 +++ b/roles/docker/templates/systemcontainercustom.conf.j2 @@ -1,15 +1,15 @@ # {{ ansible_managed }} [Service] -{%- if "http_proxy" in openshift.common %} +{% if "http_proxy" in openshift.common %} ENVIRONMENT=HTTP_PROXY={{ docker_http_proxy }} -{%- endif -%} -{%- if "https_proxy" in openshift.common %} +{% endif -%} +{% if "https_proxy" in openshift.common %} ENVIRONMENT=HTTPS_PROXY={{ docker_http_proxy }} -{%- endif -%} -{%- if "no_proxy" in openshift.common %} +{% endif -%} +{% if "no_proxy" in openshift.common %} ENVIRONMENT=NO_PROXY={{ docker_no_proxy }} -{%- endif %} +{% endif %} {%- if os_firewall_use_firewalld|default(false) %} [Unit] Wants=iptables.service |