Selaa lähdekoodia

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 vuotta sitten
vanhempi
commit
2bc2449747
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  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 %}