Browse Source

If there are backups in backup dir. Fixes #1140

pull/1144/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
4c8b1f45a2
  1. 24
      lgsm/functions/info_distro.sh

24
lgsm/functions/info_distro.sh

@ -105,19 +105,21 @@ fi
## Backup info ## Backup info
if [ -d "${backupdir}" ]; then if [ -d "${backupdir}" ]; then
# used space in backups dir. # Ued space in backups dir.
backupdirdu=$(du -sh "${backupdir}" | awk '{print $1}') backupdirdu=$(du -sh "${backupdir}" | awk '{print $1}')
# If no backup dir, size is 0M
if [ -z "${backupdirdu}" ]; then if [ -z "${backupdirdu}" ]; then
backupdirdu="0M" backupdirdu="0M"
fi fi
# If there are backups in backup dir.
# number of backups. if [ $(find "${backupdir}" -name "*.tar.gz" | wc -l) -ne "0" ]; then
backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) # number of backups.
# most recent backup. backupcount=$(find "${backupdir}"/*.tar.gz | wc -l)
lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) # most recent backup.
# date of most recent backup. lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1)
lastbackupdate=$(date -r "${lastbackup}") # date of most recent backup.
# size of most recent backup. lastbackupdate=$(date -r "${lastbackup}")
lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}') # size of most recent backup.
lastbackupsize=$(du -h "${lastbackup}" | awk '{print $1}')
fi
fi fi

Loading…
Cancel
Save