fix test-table user notification text

This commit is contained in:
Asif Bacchus 2020-11-27 01:57:25 -07:00
parent e3340e86a7
commit 3e7ed82199
1 changed files with 1 additions and 1 deletions

2
entrypoint.sh Normal file → Executable file
View File

@ -57,7 +57,7 @@ if [ -z "$(ls -A /var/lib/mysql/ 2> /dev/null)" ]; then
printf "DB-CREATE: Generating SQL permissions statement for '%s'\n" "$MYSQL_USER"
echo "GRANT ALL ON \'$MYSQL_DATABASE\'.* TO \'$MYSQL_USER\'@'%' IDENTIFIED BY \'$MYSQL_PASSWORD\';" >> "$sqlCmd"
fi
printf "DB-CREATE: Cleaning up 'test' table\n"
printf "DB-CREATE: Generating statement to drop 'test' table\n"
echo 'DROP DATABASE IF EXISTS test;' >> "$sqlCmd"
echo 'FLUSH PRIVILEGES;' >> "$sqlCmd"