diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-19 00:30:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-19 00:30:17 +0000 |
commit | f812f74460b20a2ba2d4c58e45fd9463a7209769 (patch) | |
tree | 278f9422619d36677988ead14ec569cc3e968590 /ms/command-executor/src/main/docker/start.sh | |
parent | f5991756ab79209e793a9de072eb2100958c853f (diff) | |
parent | cc96f30a504aa32030eafefdba69d635869c7949 (diff) |
Merge "Add support for Ansible packages"
Diffstat (limited to 'ms/command-executor/src/main/docker/start.sh')
-rwxr-xr-x | ms/command-executor/src/main/docker/start.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ms/command-executor/src/main/docker/start.sh b/ms/command-executor/src/main/docker/start.sh index 659038418..38357a091 100755 --- a/ms/command-executor/src/main/docker/start.sh +++ b/ms/command-executor/src/main/docker/start.sh @@ -28,5 +28,15 @@ then export BASIC_AUTH="Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" fi +if [ "${http_proxy}" ] +then + echo "Setting http_proxy: ${http_proxy}" +fi + +if [ "${https_proxy}" ] +then + echo "Setting https_proxy: ${https_proxy}" +fi + cd /opt/app/onap/python/ python server.py ${APP_PORT} ${BASIC_AUTH}
\ No newline at end of file |