Created
November 1, 2018 16:16
-
-
Save erikvw/244c00675fd4914197d6a7f8b5ecf3fc 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
# restores archive file to the given folder. | |
# then run mysql dbname < archive_file.sql | |
. "$HOME/.duplicity/.env_variables.conf" | |
# note will fail if file exists | |
duplicity --verbosity info \ | |
--encrypt-sign-key=$GPG_KEY \ | |
--log-file $HOME/.duplicity/info.log \ | |
--file-to-restore $1 \ | |
$AWS_ENDPOINT/$AWS_BUCKET \ | |
$HOME/$1 | |
unset AWS_ACCESS_KEY_ID | |
unset AWS_SECRET_ACCESS_KEY | |
unset AWS_ENDPOINT | |
unset AWS_BUCKET | |
unset GPG_KEY | |
unset PASSPHRASE | |
unset DB_NAME | |
unset DB_DATE | |
unset DB_FILE | |
unset BACKUP_DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment