Revert previous commit where we tried 30 times to take a snapshot

If it fails 10 times, it won't work
tags/virt-backup-0.2.12-1
Daniel Berteaud 10 years ago
parent b7b5063982
commit 139ae9d993
  1. 4
      virt-backup

@ -789,7 +789,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 < 30; $cnt++ ){
for ($cnt = 0; $cnt < 10; $cnt++ ){
print "Running: $cmd" if $opts{debug};
if (-e "$lock" . '.lock'){
print "Volume $blk is locked...\n" if $opts{debug};
@ -805,7 +805,7 @@ sub create_snapshot{
print SNAPLIST $blk.$suffix ."\n";
close SNAPLIST;
# break the loop now
$cnt = 30;
$cnt = 10;
}
else{
print "An error occured, couldn't create the snapshot\n" if $opts{debug};

Loading…
Cancel
Save