sauvegardes/Plan Borg/bin/dumps

18 lines
313 B
Plaintext
Raw Normal View History

2023-03-20 23:43:59 +01:00
#!/bin/bash
BINDIR=$(dirname "$0")
cd "$BINDIR"
DUMP_DIR="/var/backups/dumps/"
2023-03-21 00:00:55 +01:00
if [ ! -d $DUMP_DIR ]; then
mkdir -p $DUMP_DIR
fi
2023-03-20 23:43:59 +01:00
if [ $(find "$DUMP_DIR" -cmin -120 -type d | wc -l) -eq 0 ]; then
./dump-psql
./dump-msql
./dump-influx
else
echo "Very recent dump detected, dumps skipped."
fi