mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 03:07:48 +00:00
10 lines
279 B
Bash
Executable File
10 lines
279 B
Bash
Executable File
#! /bin/bash
|
|
sshKey=$(<.sshKey)
|
|
serverBackupPath=$(<.serverBackupPath)
|
|
localPath=$(<.localBackupPath)
|
|
|
|
/bin/rsync -r -e "ssh -i $sshKey" "$serverBackupPath/db/*" "$localPath/db/"
|
|
|
|
# Delete files older than 15 days
|
|
find "$localPath/db" -type f -name "*.sql.gz" -mtime +15 -delete
|