File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments