Unverified Commit 0843a3f1 authored by Erik Wilson's avatar Erik Wilson Committed by GitHub

Merge pull request #936 from TraSec/inherit_proxy

inherit proxy from ENV on install
parents f9888ca3 7b37988f
...@@ -567,6 +567,7 @@ create_env_file() { ...@@ -567,6 +567,7 @@ create_env_file() {
UMASK=$(umask) UMASK=$(umask)
umask 0377 umask 0377
env | grep '^K3S_' | $SUDO tee ${FILE_K3S_ENV} >/dev/null env | grep '^K3S_' | $SUDO tee ${FILE_K3S_ENV} >/dev/null
env | egrep -i '^(NO|HTTP|HTTPS)_PROXY' | $SUDO tee -a ${FILE_K3S_ENV} >/dev/null
umask $UMASK umask $UMASK
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment