Verbosity of backups is turned off.

This commit is contained in:
2015-02-03 10:26:28 +04:00
parent fb8120dff8
commit fa0339d4d0
3 changed files with 8 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
#!/bin/bash
CD=cd
DATE=/bin/date
TAR=/bin/tar
@@ -48,7 +50,7 @@ for FILE in `ls -t git.*.tar.bz2.gpg`; do
echo "$FILE is removed to meet keep number of backups $KEEP." | tee -a $LOG
rm $FILE 2>&1| tee -a $LOG
fi;
i=`expr $i + 1`
i=$(($i+1))
done
i=0
for FILE in `ls -t git.*.tar.bz2.sig`; do
@@ -56,7 +58,7 @@ for FILE in `ls -t git.*.tar.bz2.sig`; do
echo "$FILE is removed to meet keep number of backups $KEEP." | tee -a $LOG
rm $FILE 2>&1| tee -a $LOG
fi;
i=`expr $i + 1`
i=$(($i+1))
done
#
# Footer