We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70faeb2 commit 7d9aaa0Copy full SHA for 7d9aaa0
bin/rally-verify-wrapper.sh
@@ -11,6 +11,19 @@ set -eux
11
12
artifacts_dir=/home/rally/artifacts
13
14
+if [ ! -z ${TEMPEST_NO_PROXY_EXTRA:+x} ]; then
15
+ if [ -z ${NO_PROXY:+x} ]; then
16
+ NO_PROXY="$TEMPEST_NO_PROXY_EXTRA"
17
+ else
18
+ NO_PROXY="$NO_PROXY,$TEMPEST_NO_PROXY_EXTRA"
19
+ fi
20
+ if [ -z ${no_proxy:+x} ]; then
21
+ no_proxy="$TEMPEST_NO_PROXY_EXTRA"
22
23
+ no_proxy="$no_proxy,$TEMPEST_NO_PROXY_EXTRA"
24
25
+fi
26
+
27
if [ ! -z ${TEMPEST_LOAD_LIST:+x} ]; then
28
echo "$TEMPEST_LOAD_LIST" > ~/tempest-load-list
29
fi
0 commit comments