mirror of
https://github.com/tiredofit/docker-db-backup.git
synced 2025-12-23 06:03:43 +01:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
75ded7599c | ||
|
|
5e5986db69 | ||
|
|
1d61f40d0c | ||
|
|
ee8bbb370b | ||
|
|
ae201814fa | ||
|
|
bf8bce0893 |
@@ -1,3 +1,9 @@
|
||||
## 2.9.1 2021-10-15 <sbrunecker@github>
|
||||
|
||||
### Fixed
|
||||
- Allow MariaDB 8.0 servers to be backed up
|
||||
- Fixed DB available check getting stuck with empty password
|
||||
|
||||
## 2.9.0 2021-10-15 <dave at tiredofit dot ca>
|
||||
|
||||
### Added
|
||||
|
||||
@@ -121,6 +121,7 @@ RUN set -ex && \
|
||||
influxdb \
|
||||
libarchive \
|
||||
mariadb-client \
|
||||
mariadb-connector-c \
|
||||
mongodb-tools \
|
||||
libressl \
|
||||
pigz \
|
||||
|
||||
@@ -292,8 +292,9 @@ check_availability() {
|
||||
;;
|
||||
"mysql" )
|
||||
COUNTER=0
|
||||
export MYSQL_PWD=${dbpass}
|
||||
while true; do
|
||||
mysqlcmd='mysql -u'${dbuser}' -P '${dbport}' -h '${dbhost}' -p'${dbpass}
|
||||
mysqlcmd='mysql -u'${dbuser}' -P '${dbport}' -h '${dbhost}
|
||||
out="$($mysqlcmd -e "SELECT COUNT(*) FROM information_schema.FILES;" 2>&1)"
|
||||
echo "$out" | grep -E "COUNT|Enter" 2>&1 > /dev/null
|
||||
if [ $? -eq 0 ]; then
|
||||
|
||||
Reference in New Issue
Block a user