Fix find command options in backup.sh

This commit is contained in:
Tyler Hallada 2022-02-12 23:26:45 -05:00
parent 21fffd3c23
commit bb2059e697

View File

@ -2,6 +2,6 @@
export $(grep -v '^#' .env | xargs -d '\n') export $(grep -v '^#' .env | xargs -d '\n')
mkdir -p backups mkdir -p backups
zip -r -9 backups/plugins.zip plugins -DF --out backups/plugins-update.zip zip -r -9 backups/plugins.zip plugins -DF --out backups/plugins-update.zip
pg_dump -U modmapper -Fc modmapper > backups/modmapper-$(date +'%Y-%m-%d').dump pg_dump -h localhost -U modmapper -Fc modmapper > backups/modmapper-$(date +'%Y-%m-%d').dump
find backups/modmapper-*.dump -mtime +30 --type f --delete find backups/modmapper-*.dump -mtime +30 -type f -delete
rclone sync backups/* dropbox:modmapper rclone sync backups/* dropbox:modmapper