Skip to content

Feature/fix documentation #2909

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,21 +93,21 @@ then
# Get Database Username
DB_USER=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_user | cut -d "=" -f2`
if [ -z "$DB_USER" ]; then
echo "The domain username is blank. The Admin username must be set in the properties file."
echo "The database username is blank. The database username must be set in the properties file."
exit
fi
# echo "Database Username $DB_USER"
# Get Database Password
DB_PASS=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_pass | cut -d "=" -f2`
if [ -z "$DB_PASS" ]; then
echo "The domain password is blank. The Admin password must be set in the properties file."
echo "The database password is blank. The database password must be set in the properties file."
exit
fi
# echo "Database Password $DB_PASS"
# Get databasse Schema Password
DB_SCHEMA_PASS=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_schema | cut -d "=" -f2`
if [ -z "$DB_SCHEMA_PASS" ]; then
echo "The databse schema password is blank. The database schema password must be set in the properties file."
echo "The database schema password is blank. The database schema password must be set in the properties file."
exit
fi
# echo "Database Schema Password: $DB_SCHEMA_PASS"
Expand Down