Skip to content
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

Add DATE_FORMAT option to enable date formatting in filename #15

Merged
merged 1 commit into from Oct 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions mysqlbkup.config.sample
Expand Up @@ -9,6 +9,8 @@ BACKUP_DIR=/var/mysqlbkup

MAX_BACKUPS=3

DATE_FORMAT=

# Databases to ignore
# This is a space separated list.
# Each entry supports bash pattern matching by default.
Expand Down
3 changes: 3 additions & 0 deletions mysqlbkup.sh
Expand Up @@ -85,6 +85,9 @@ done

# the date is used for backup file names
date=$(date +%F)
if [ ! -z $DATE_FORMAT ]; then
date=$(date "$DATE_FORMAT")
fi

# get the list of dbs to backup, may as well just hit them all..
dbs=$(echo 'show databases' | mysql --defaults-file=$DEFAULTS_FILE )
Expand Down