Explorar o código

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 %!s(int64=6) %!d(string=hai) anos
pai
achega
2bc2449747
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  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 %}