aboutsummaryrefslogtreecommitdiffstats
path: root/packages/docker/src/main/docker/docker-install.sh
diff options
context:
space:
mode:
authorJorge Hernandez <jh1730@att.com>2018-03-28 18:10:31 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-28 18:10:31 +0000
commit95a5bc9816c0bdf56b4ea6699004eb29940ddc6a (patch)
treeae77669442e877457c4bc3ff9a49b426bcd39742 /packages/docker/src/main/docker/docker-install.sh
parentcb802d83533ff13886f08b6b9ecb8827bb86d90c (diff)
parent5cd57949604803a32bd3a19c183eadf11f0ab900 (diff)
Merge "ONAP code change for log files consolidation"
Diffstat (limited to 'packages/docker/src/main/docker/docker-install.sh')
-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)."