Try up to 30 times to take the snapshot

This commit is contained in:
Daniel Berteaud 2014-06-03 10:02:15 +02:00
parent abafa0a3b0
commit a4f65e3d78

View File

@ -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);