Browse Source

should work, to be tested

pull/1144/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
0d986a99cd
  1. 11
      lgsm/functions/command_backup.sh

11
lgsm/functions/command_backup.sh

@ -139,21 +139,20 @@ fn_backup_clearing(){
backupscount=$(find "${backupdir}/" -type f -name "*.tar.gz"|wc -l) backupscount=$(find "${backupdir}/" -type f -name "*.tar.gz"|wc -l)
# How many backups exceed maxbackups # How many backups exceed maxbackups
backupquotadiff=$((backupscount-maxbackups)) backupquotadiff=$((backupscount-maxbackups))
#backupquotadiff=$(find ${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail -n +"${maxbackups}" | cut -f2- -d" " | wc -l)
backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l)
# If backup variables are set # If backup variables are set
if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then
# If anything can be cleared # If anything can be cleared
if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then
# If maxbackups is used over maxbackupdays # If maxbackups greater or equal than backupsoutdatedcount, then it is used over maxbackupdays
if [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]||[ "${backupquotadiff}" -eq "${backupsoudatedcount}" ]; then if [ "${backupquotadiff}" -gt "${backupsoudatedcount}" ]||[ "${backupquotadiff}" -eq "${backupsoudatedcount}" ]; then
# Display how many backups will be cleared # Display how many backups will be cleared
echo "${backupquotadiff} backups will be clearned" echo "${backupquotadiff} backups will be clearned"
fn_print_info_nl "${backupquotadiff} backups than max ${maxbackups} will be cleared." fn_print_info_nl "${backupquotadiff} backups exceed max ${maxbackups} and will be cleared."
fn_script_log "${backupquotadiff} backups than max ${maxbackups} will be cleared" fn_script_log "${backupquotadiff} backups exceed max ${maxbackups} and will be cleared"
echo "... Once this update is over" sleep 2
# Clear over quota backups # Clear over quota backups
#find "${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail "${backupquotadiff}" | cut -f2- -d" " find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm
# If maxbackupdays is used over maxbackups # If maxbackupdays is used over maxbackups
elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then
# Display how many backups will be cleared # Display how many backups will be cleared

Loading…
Cancel
Save