ONAP log files consolidation
[policy/engine.git] / packages / docker / src / main / docker / docker-install.sh
index e8b9aaf..5c85611 100644 (file)
@@ -151,6 +151,7 @@ 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
@@ -658,6 +659,11 @@ if [[ -z ${POLICY_GROUP} ]]; then
        exit 1
 fi
 
+if [[ -z ${POLICY_LOGS} ]]; then
+    echo "POLICY_LOGS environment variable NOT set, default to /var/log/onap"
+    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)."