2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

93_DbRep: old dumpfiles not deleted by dumpMySQL clientSide

git-svn-id: https://svn.fhem.de/fhem/trunk@15888 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2018-01-14 17:18:34 +00:00
parent 04f6dc33d6
commit 6b871db331
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 93_DbRep: old dumpfiles not deleted by dumpMySQL clientSide
- bugfix: 70_BRAVIA: typo fixed, 'set application' works now
- feature: 93_DbRep: V7.4.0, new commands dumpSQLite/restoreSQLite,
execute commands before/after set optimizeTables,

View File

@ -37,6 +37,7 @@
###########################################################################################################################
# Versions History:
#
# 7.4.1 14.01.2018 fix old dumpfiles not deleted by dumpMySQL clientSide
# 7.4.0 09.01.2018 dumpSQLite/restoreSQLite,
# backup/restore now available when DbLog-device has reopen xxxx running,
# executeBeforeDump executeAfterDump also available for optimizeTables, vacuum, restoreMySQL,
@ -284,7 +285,7 @@ use Encode qw(encode_utf8);
sub DbRep_Main($$;$);
my $DbRepVersion = "7.4.0";
my $DbRepVersion = "7.4.1";
my %dbrep_col = ("DEVICE" => 64,
"TYPE" => 64,
@ -5828,7 +5829,7 @@ sub mysql_DoDumpClientSide($) {
my $ftp = $ftperr?encode_base64($ftperr,""):$ftpmsg?encode_base64($ftpmsg,""):0;
# alte Dumpfiles löschen
my @fd = deldumpfiles($hash,$sql_file);
my @fd = deldumpfiles($hash,$backupfile);
my $bfd = join(", ", @fd );
$bfd = $bfd?encode_base64($bfd,""):0;