Skip to content
Snippets Groups Projects
Commit f2c712f4 authored by root's avatar root
Browse files

Add Check Cloud Storage

parent 556b0412
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Copyright © 2019 Le Filament (<http://www.le-filament.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
OUTPUT=""
RETURN_CODE="0"
for file in `ls /mnt/vdb/backup/cloud/*.latest`
do
INIT_LINE=$(grep -A 2 "Container:" $file | grep -v ACL | grep -v Sync | grep -v X- | grep -v Accept-Ranges | tr -d '\t ' | tr '\n' ' ')
LAST_FILE=$(tail -2 $file | grep gpg)
if [ `date -d "${LAST_FILE:5:19}" +%s` -gt `date -d '7 days ago' +%s` ]
then
OUTPUT+="OK : $INIT_LINE Last-Modified:${LAST_FILE:5:19}\n"
else
OUTPUT+="NOK : $INIT_LINE Last-Modified:${LAST_FILE:5:19}\n"
RETURN_CODE="2"
fi
done
echo $OUTPUT
exit ${RETURN_CODE}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment