diff options
Diffstat (limited to 'backup-dataset.sh')
-rwxr-xr-x | backup-dataset.sh | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/backup-dataset.sh b/backup-dataset.sh index e4303c5..b1553e5 100755 --- a/backup-dataset.sh +++ b/backup-dataset.sh | |||
@@ -3,7 +3,7 @@ | |||
3 | SNAPSHOT_DIRECTORY="/var/backups/dataset-snapshots" | 3 | SNAPSHOT_DIRECTORY="/var/backups/dataset-snapshots" |
4 | 4 | ||
5 | usage() ( | 5 | usage() ( |
6 | echo "backup-dataset.sh <dataset> <duplicity destination> [duplicity options]" | 6 | echo "backup-dataset.sh <dataset> <duplicity destination> <signing key> <encryption key> [duplicity options]" |
7 | echo | 7 | echo |
8 | echo "Performs a duplicity incremental backup of the specified dataset." | 8 | echo "Performs a duplicity incremental backup of the specified dataset." |
9 | echo "An atomic snapshot of the dataset is taken prior to backing up." | 9 | echo "An atomic snapshot of the dataset is taken prior to backing up." |
@@ -13,15 +13,21 @@ usage() ( | |||
13 | backup_dataset() ( | 13 | backup_dataset() ( |
14 | DATASET="$1" | 14 | DATASET="$1" |
15 | DESTINATION="$2" | 15 | DESTINATION="$2" |
16 | DUPLICITY_OPTIONS="$3" | 16 | SIGNING_KEY="$3" |
17 | ENCRYPTION_KEY="$4" | ||
18 | DUPLICITY_OPTIONS="$5" | ||
17 | 19 | ||
18 | sudo snap.sh snap "$DATASET" | 20 | sudo snap.sh snap "$DATASET" |
19 | PASSPHRASE="null" duplicity $DUPLICITY_OPTIONS "$SNAPSHOT_DIRECTORY/$DATASET" "$DESTINATION" | 21 | |
22 | PASSPHRASE="null" duplicity $DUPLICITY_OPTIONS \ | ||
23 | --sign-key="$SIGNING_KEY" --encrypt-key="$ENCRYPTION_KEY" \ | ||
24 | "$SNAPSHOT_DIRECTORY/$DATASET" "$DESTINATION" | ||
25 | |||
20 | sudo snap.sh free "$DATASET" | 26 | sudo snap.sh free "$DATASET" |
21 | ) | 27 | ) |
22 | 28 | ||
23 | case "${1:-help}" in | 29 | case "${1:-help}" in |
24 | "help") usage;; | 30 | "help") usage;; |
25 | *) backup_dataset "$1" "$2" "${3:-}";; | 31 | *) backup_dataset "$1" "$2" "$3" "$4" "${5:-incremental}";; |
26 | esac | 32 | esac |
27 | 33 | ||