mirror of
https://github.com/luzifer-docker/mariadb-backup.git
synced 2024-11-09 15:20:02 +00:00
Re-enable grants backup
as bug has been fiexed since 2019 Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
a26d9a3bd3
commit
0c2fdaaf8b
1 changed files with 33 additions and 33 deletions
|
@ -36,10 +36,10 @@ while [ 1 ]; do
|
|||
-a --databases "${db_name}" | gzip >"${TARGET_FILE}"
|
||||
done
|
||||
|
||||
# Dump grants -- Disabled until https://jira.percona.com/browse/PT-1561 is fixed
|
||||
#GRANTS_FILE="${TARGET_DIR}/${BACKUP_DATE}_grants.sql"
|
||||
#step "Creating grants backuo in ${GRANTS_FILE}..."
|
||||
#pt-show-grants -h "${MYSQL_HOST:-mariadb}" -u "${MYSQL_USER:-root}" -p "${MYSQL_PASSWORD}" >"${GRANTS_FILE}"
|
||||
# Dump grants
|
||||
GRANTS_FILE="${TARGET_DIR}/${BACKUP_DATE}_grants.sql"
|
||||
step "Creating grants backup in ${GRANTS_FILE}..."
|
||||
pt-show-grants -h "${MYSQL_HOST:-mariadb}" -u "${MYSQL_USER:-root}" -p "${MYSQL_PASSWORD}" >"${GRANTS_FILE}"
|
||||
|
||||
# Cleanup old backups
|
||||
step "Removing old backups..."
|
||||
|
|
Loading…
Reference in a new issue