You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
397 B
12 lines
397 B
#!/bin/bash
|
|
password_root="${MARIADB_ROOT_PASSWORD:-}"
|
|
if [ -f "${MARIADB_ROOT_PASSWORD_FILE:-}" ]; then
|
|
password_root=$(cat $MARIADB_ROOT_PASSWORD_FILE)
|
|
fi
|
|
|
|
password_db="${MARIADB_PASSWORD:-}"
|
|
if [ -f "${MARIADB_PASSWORD_FILE:-}" ]; then
|
|
password_db=$(cat $MARIADB_PASSWORD_FILE)
|
|
fi
|
|
|
|
/opt/bitnami/mariadb/bin/mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -uroot -p${password_root} mysql |