Fix find command options in backup.sh
This commit is contained in:
parent
21fffd3c23
commit
bb2059e697
@ -2,6 +2,6 @@
|
||||
export $(grep -v '^#' .env | xargs -d '\n')
|
||||
mkdir -p backups
|
||||
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
|
||||
find backups/modmapper-*.dump -mtime +30 --type f --delete
|
||||
pg_dump -h localhost -U modmapper -Fc modmapper > backups/modmapper-$(date +'%Y-%m-%d').dump
|
||||
find backups/modmapper-*.dump -mtime +30 -type f -delete
|
||||
rclone sync backups/* dropbox:modmapper
|
Loading…
Reference in New Issue
Block a user