mirror of
https://github.com/GrapheneOS/matrix.grapheneos.org.git
synced 2024-10-01 04:45:34 -04:00
16 lines
583 B
Bash
Executable File
16 lines
583 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
remote=root@matrix.grapheneos.org
|
|
|
|
timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)
|
|
ssh $remote "rm -rf local-backup"
|
|
ssh $remote "mkdir local-backup"
|
|
|
|
ssh $remote "mkdir local-backup/$timestamp"
|
|
ssh $remote "pg_dumpall -U postgres > local-backup/$timestamp/all_databases.sql"
|
|
ssh $remote "cp -r /etc/synapse local-backup/$timestamp/synapse"
|
|
ssh $remote "tar -cC local-backup $timestamp | zstd -9 | age -r \$(cat backup-public-key.txt) -o local-backup/$timestamp.tar.zst.age"
|
|
rsync -v $remote:./local-backup/$timestamp.tar.zst.age backup/
|