2014-08-06 18:09:51 +00:00
|
|
|
set -e
|
|
|
|
|
2014-08-05 21:13:19 +00:00
|
|
|
prepare
|
2014-12-05 20:45:49 +00:00
|
|
|
run restic init
|
|
|
|
run restic backup "${BASE}/fake-data"
|
|
|
|
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore"
|
2014-09-23 20:39:12 +00:00
|
|
|
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore/fake-data"
|
2014-11-30 22:18:58 +00:00
|
|
|
|
2014-12-05 20:45:49 +00:00
|
|
|
SNAPSHOT=$(run restic list snapshots)
|
2015-03-22 14:05:34 +00:00
|
|
|
run restic backup -p "$SNAPSHOT" "${BASE}/fake-data"
|
2014-12-05 20:45:49 +00:00
|
|
|
run restic restore "$(basename "$RESTIC_REPOSITORY"/snapshots/*)" "${BASE}/fake-data-restore-incremental"
|
2014-11-30 22:18:58 +00:00
|
|
|
dirdiff "${BASE}/fake-data" "${BASE}/fake-data-restore-incremental/fake-data"
|
|
|
|
|
2014-12-22 13:59:46 +00:00
|
|
|
run restic fsck -o --check-data
|
2014-08-05 21:13:19 +00:00
|
|
|
cleanup
|