Skip to content

Commit

Permalink
Update for review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-v committed Nov 25, 2022
1 parent 881db73 commit 57c0d25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions installer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion installer/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down
4 changes: 2 additions & 2 deletions installer/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57c0d25

Please sign in to comment.