aboutsummaryrefslogtreecommitdiffstats
path: root/packages/docker
diff options
context:
space:
mode:
authorChou, Joseph (JC2555) <jc2555@att.com>2018-03-28 13:46:11 -0400
committerChou, Joseph (JC2555) <jc2555@att.com>2018-03-28 13:50:53 -0400
commit5cd57949604803a32bd3a19c183eadf11f0ab900 (patch)
treef6799447752240bd654f337d5f66c397fd5fe3c4 /packages/docker
parent669931e76de18aabb14f9ff873da4783f8c83d7a (diff)
ONAP code change for log files consolidation
Undo the change so this would not block other test activity Change-Id: I4f7dd2e14f30034eefbf958be3c912af2962e8a2 Issue-ID: POLICY-562 Signed-off-by: Chou, Joseph (JC2555) <jc2555@att.com>
Diffstat (limited to 'packages/docker')
-rw-r--r--packages/docker/src/main/docker/docker-install.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/docker/src/main/docker/docker-install.sh b/packages/docker/src/main/docker/docker-install.sh
index c15f36f38..e8b9aaf14 100644
--- a/packages/docker/src/main/docker/docker-install.sh
+++ b/packages/docker/src/main/docker/docker-install.sh
@@ -151,7 +151,6 @@ function configure_component() {
SED_LINE+=" -e 's!\${{KEYSTORE_PASSWD}}!${KEYSTORE_PASSWD}!g' "
SED_LINE+=" -e 's!\${{JAVA_HOME}}!${JAVA_HOME}!g' "
SED_LINE+=" -e 's!\${{COMPONENT_TYPE}}!${COMPONENT_TYPE}!g' "
- SED_LINE+=" -e 's!\${{POLICY_LOGS}}!${POLICY_LOGS}!g' "
while read line || [ -n "${line}" ]; do
if [[ -n $line ]] && [[ $line != \#* ]]; then
@@ -659,12 +658,6 @@ if [[ -z ${POLICY_GROUP} ]]; then
exit 1
fi
-if [[ -z ${POLICY_LOGS} ]]; then
- echo "POLICY_LOGS environment variable NOT set, default to /var/log"
- export POLICY_LOGS="/var/log/onap"
-fi
-
-
FQDN=$(hostname -f 2> /dev/null)
if [[ $? != 0 || -z ${FQDN} ]]; then
echo "error: cannot determine the FQDN for this host $(hostname)."