From 340d27abe1cbcbcbb102203b6191a83e645be74a Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Fri, 12 Jan 2018 20:44:51 +0000 Subject: [PATCH] 98_update.pm: fix updateInBackground=0 & backup_before_update=1 (Forum #82614) git-svn-id: https://svn.fhem.de/fhem/trunk@15861 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_update.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/98_update.pm b/fhem/FHEM/98_update.pm index 979695fb7..8cac16697 100644 --- a/fhem/FHEM/98_update.pm +++ b/fhem/FHEM/98_update.pm @@ -251,7 +251,7 @@ doUpdate($$$$) if(AttrVal("global", "backup_before_update", 0) && $arg ne "check" && $curr==1) { my $cmdret = AnalyzeCommand(undef, "backup"); - if ($cmdret !~ m/backup done.*/) { + if($cmdret !~ m/backup done.*|Started.*in the background/) { uLog 1, "Something went wrong during backup: $cmdret"; uLog 1, "update was canceled. Please check manually!"; return;