mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 17:46:33 +00:00
b2fd9d4259
Allows adding scripts to a directory to be executed before backups and after restorating. This can allow backing up a mysql dump or something. Using these could (and probably does) break verify checks Fixes #8
7 lines
91 B
Bash
Executable File
7 lines
91 B
Bash
Executable File
set -e
|
|
|
|
cd /data
|
|
|
|
# Restore the backedup database
|
|
mv test_database.db.bak test_database.db
|