Browse Source

comment

pull/1144/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
2b2ba030a6
  1. 1
      lgsm/functions/command_backup.sh

1
lgsm/functions/command_backup.sh

@ -139,6 +139,7 @@ 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))
# How many backups exceed maxbackupdays
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

Loading…
Cancel
Save