Optimize OS/release/version detection for faster execution #70

Merged
benpro merged 86 commits from fast-debian-check into master 2019-04-05 11:01:57 +02:00
Showing only changes of commit 9658e531ad - Show all commits

View file

@ -901,12 +901,12 @@ if is_debian; then
# You could change the default path in /etc/evocheck.cf
MONGO_BACKUP_PATH=${MONGO_BACKUP_PATH:-"/home/backup/mongodump"}
if [ -d "$MONGO_BACKUP_PATH" ]; then
for file in ${MONGO_BACKUP_PATH}/*/*.{json,bson}; do
for file in "${MONGO_BACKUP_PATH}/*/*.{json,bson}"; do
# Skip indexes file.
if ! [[ "$file" =~ indexes ]]; then
limit=$(date +"%s" -d "now - 2 day")
updated_at=$(stat -c "%Y" $file)
if [ -f $file ] && [ $limit -gt $updated_at ]; then
if [ -f "$file" ] && [ $limit -gt $updated_at ]; then
failed "IS_MONGO_BACKUP"
break
fi