Files
Kapisi/roles/Singularity/files/test-backup.bash

14 lines
251 B
Bash
Raw Normal View History

2026-03-30 13:49:52 -05:00
#!/bin/bash
backupfile="$HOME"/tt-rss.sql
function test-backup() {
sudo -u postgres pg_dump -d ttrss > "$backupfile"
}
function test-restore() {
./delete-db.bash
./create-db.bash
cat "$backupfile" | sudo -u postgres psql -d ttrss
}