diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-04-18 16:27:20 -0400 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-04-18 20:28:22 +0000 |
commit | cc96f30a504aa32030eafefdba69d635869c7949 (patch) | |
tree | 64de5cdc5735190429e89bd598e41bd1973a163f /ms/command-executor/src/main/docker/start.sh | |
parent | 01cbd5c7ea7b554f229ff3735d5352038f8b4419 (diff) |
Add support for Ansible packages
- rework how to provide packages
- support proxy as parameters
Change-Id: I1d10d921ead0837aa0f74b965cadf985424ceedc
Issue-ID: CCCSDK-1215
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
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 |