Преглед изворни кода

crio-network: fix definition for systemd

The systemd EnviromentFile= directive doesn't need "export "

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1585038

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Giuseppe Scrivano пре 6 година
родитељ
комит
2bc2449747
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      roles/container_runtime/templates/crio-network.j2

+ 3 - 3
roles/container_runtime/templates/crio-network.j2

@@ -1,9 +1,9 @@
 {% if 'http_proxy' in openshift.common %}
-export HTTP_PROXY={{ openshift.common.http_proxy }}
+HTTP_PROXY={{ openshift.common.http_proxy }}
 {% endif %}
 {% if 'https_proxy' in openshift.common %}
-export HTTPS_PROXY={{ openshift.common.https_proxy }}
+HTTPS_PROXY={{ openshift.common.https_proxy }}
 {% endif %}
 {% if 'no_proxy' in openshift.common %}
-export NO_PROXY={{ openshift.common.no_proxy }}
+NO_PROXY={{ openshift.common.no_proxy }}
 {% endif %}