Skip to content

Commit 7eaf2c4

Browse files
committed
Add backup script
It's very primitive but will do for now.
1 parent f6f532c commit 7eaf2c4

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.sqlite
2+
backup/*
23
*.db
34
*/__pycache__/
45
*.pyc

scripts/backup-db.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env bash
2+
3+
DIR=backup
4+
5+
mkdir -p $DIR
6+
7+
function cleanup {
8+
# Delete oldest backup
9+
candidate="$(find $DIR -type f | sort | head -n 1)"
10+
echo "Deleting $candidate"
11+
rm "$candidate"
12+
}
13+
14+
# Make sure backup directory doesn't take more than 30gb (+the new backup)
15+
while [ "$(du -s $DIR | cut -f1)" -gt 3000000 ]; do
16+
cleanup
17+
done
18+
19+
cp movie.db "$DIR/$(date +%Y-%m-%d-%H-%M-%S)-movie.db"

0 commit comments

Comments
 (0)