mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
2e9574d53c
Cron comes with just a metric ton of recommended dependencies including mariadb-common which is just a bunch of unneccessary weight. Just install what's necessary for cron.
7 lines
227 B
Bash
Executable file
7 lines
227 B
Bash
Executable file
#!/bin/bash
|
|
if [ -z "$POSTGRES_DB" ]; then
|
|
echo "Database not specified, defaulting to bookwyrm"
|
|
fi
|
|
BACKUP_DB=${POSTGRES_DB:-bookwyrm}
|
|
filename=backup_${BACKUP_DB}_$(date +%F)
|
|
pg_dump -U $BACKUP_DB > /backups/$filename.sql
|