Keep a second backup set
This commit is contained in:
parent
d9c0078e2e
commit
2a4dddf376
|
@ -6,7 +6,7 @@ BACKUPS=/var/backups
|
||||||
DUMPS=7
|
DUMPS=7
|
||||||
|
|
||||||
LEVEL0=$(find $BACKUPS -name "*full.tgz" | sort | tail -n1)
|
LEVEL0=$(find $BACKUPS -name "*full.tgz" | sort | tail -n1)
|
||||||
INCR=$(find $BACKUPS -name "*incremental.tgz" | wc -l)
|
INCR=$(find $BACKUPS -name "*incremental.tgz" -newer $LEVEL0 | wc -l)
|
||||||
|
|
||||||
if [ ! -z $LEVEL0 ] && [ $INCR -le $DUMPS ]
|
if [ ! -z $LEVEL0 ] && [ $INCR -le $DUMPS ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue