Browse Source

fix(info): get most recent backup instead of oldest (#3319)

pull/3328/head
Alex Handlovits 4 years ago
committed by GitHub
parent
commit
794cde8980
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/info_distro.sh

2
lgsm/functions/info_distro.sh

@ -205,7 +205,7 @@ if [ -d "${backupdir}" ]; then
# number of backups.
backupcount=$(find "${backupdir}"/*.tar.gz | wc -l)
# most recent backup.
lastbackup=$(find "${backupdir}"/*.tar.gz | head -1)
lastbackup=$(find "${backupdir}"/*.tar.gz | tail -1)
# date of most recent backup.
lastbackupdate=$(date -r "${lastbackup}")
# no of days since last backup.

Loading…
Cancel
Save