diff --git a/installer/README.md b/installer/README.md index d163d198d..80e31802e 100644 --- a/installer/README.md +++ b/installer/README.md @@ -4,7 +4,7 @@ The SODA Delfin supports two types of installation * Installation using Ansible * Installation using Bash scripts -## Ansible installer +## Installation using Ansible * Supported OS: **Ubuntu 20.04, Ubuntu 18.04** * Prerequisite: **Python 3.6 or above** should be installed @@ -42,7 +42,7 @@ Please refer [user guides](https://docs.sodafoundation.io/guides/user-guides/del -## Bash script installer +## Installation using Bash Scripts This is a standalone/non-containerized installer for SODA Infrastructure Manager (delfin) project. It contains a script and options to check the environment feasible for installing delfin. Installs required dependent software/binaries. @@ -174,7 +174,7 @@ $ installer/install Note: Multiple instances of exporter and api is not allowed currently. ### Logs -All the installer logs are stored in the /var/log/sodafoundation directory. +All the installer logs are stored in the /var/log/soda directory. The logs can be uniquely identified based upon the timestamp. diff --git a/installer/helper.py b/installer/helper.py index 042885e33..a9a27b489 100644 --- a/installer/helper.py +++ b/installer/helper.py @@ -29,7 +29,7 @@ LOGGING_LEVEL = "INFO" logger = None logfile = '' -delfin_log_dir = '/var/log/sodafoundation/' +delfin_log_dir = '/var/log/soda/' def init_logging(): diff --git a/installer/util.sh b/installer/util.sh index 1c03799c0..b4d64d6ac 100644 --- a/installer/util.sh +++ b/installer/util.sh @@ -16,8 +16,8 @@ # Script to hold the utilities required PROJECT_NAME='delfin' -LOG_DIR=/var/log/sodafoundation -LOGFILE=${LOGFILE:-/var/log/sodafoundation/delfin_pre_installer.log} +LOG_DIR=/var/log/soda +LOGFILE=${LOGFILE:-/var/log/soda/delfin_pre_installer.log} if [ ! -d ${LOG_DIR} ]; then mkdir -p $LOG_DIR