From a4f65e3d78ae9ef0d55485838fd31c3bad3046bb Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 3 Jun 2014 10:02:15 +0200 Subject: [PATCH] Try up to 30 times to take the snapshot --- virt-backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virt-backup b/virt-backup index cf7feb5..36a7e7c 100644 --- a/virt-backup +++ b/virt-backup @@ -781,7 +781,7 @@ sub create_snapshot{ $lock = $opts{backupdir} . '/' . $lock . '.lock'; my $cmd = "$opts{lvcreate} -s -n " . $blk . $suffix . " -L $opts{snapsize} $blk > /dev/null 2>&1 < /dev/null\n"; - for ($cnt = 0; $cnt < 10; $cnt++ ){ + for ($cnt = 0; $cnt < 30; $cnt++ ){ print "Running: $cmd" if $opts{debug}; if (-e "$lock" . '.lock'){ print "Volume $blk is locked...\n" if $opts{debug}; @@ -800,7 +800,7 @@ sub create_snapshot{ $cnt = 10; } else{ - print "An error occured, couldn't create the snapshot" if $opts{debug}; + print "An error occured, couldn't create the snapshot\n" if $opts{debug}; } } sleep(1);