Last active
April 16, 2023 02:46
-
-
Save ultramookie/35c912d3503677a97d15f137bcf76aef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo -u postgres pg_dump -Fc mastodon_production -Z 9 -f /opt/db/mastodon.`date +%d-%H`.dump | |
# Sync It Offsite | |
rclone sync /home/mastodon/live/.env.production bucket:conf/mastodon/ | |
rclone sync /etc/nginx/sites-available/mastodon bucket:conf/nginx/ | |
rclone sync /home/mastodon/live/public/system/ bucket:system --exclude-from=/opt/backup/excludes.txt | |
rclone sync /opt/db bucket:db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment