Skip to content

Commit 244e411

Browse files
committedDec 13, 2024·
Release 4.1.12 - See CHANGELOG.md
1 parent e69ac23 commit 244e411

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.1.12 2024-12-13 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix for 4.1.11
5+
6+
17
## 4.1.11 2024-12-13 <dave at tiredofit dot ca>
28

39
### Changed

‎install/assets/functions/10-db-backup

+1-1
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ backup_mysql() {
691691

692692
if [ "${backup_job_db_name,,}" = "all" ] ; then
693693
write_log debug "Preparing to back up everything except for information_schema and _* prefixes"
694-
db_names=$(run_as_user ${_mysql_prefix}${_mysql_bin_prefix} -h ${backup_job_db_host} -P ${backup_job_db_port} -u${backup_job_db_user} ${mysql_tls_args} ${backup_job_extra_opts} ${backup_job_extra_enumeration_opts} --batch -e "SHOW DATABASES;" | grep -v Database | grep -v schema )
694+
db_names=$(run_as_user ${_mysql_prefix}${_mysql_bin_prefix/-/} -h ${backup_job_db_host} -P ${backup_job_db_port} -u${backup_job_db_user} ${mysql_tls_args} ${backup_job_extra_opts} ${backup_job_extra_enumeration_opts} --batch -e "SHOW DATABASES;" | grep -v Database | grep -v schema )
695695
if [ -n "${backup_job_db_name_exclude}" ] ; then
696696
db_names_exclusions=$(echo "${backup_job_db_name_exclude}" | tr ',' '\n')
697697
for db_exclude in ${db_names_exclusions} ; do

0 commit comments

Comments
 (0)
Please sign in to comment.