Skip to content

Instantly share code, notes, and snippets.

@icefo
icefo / zfs_dup_B2.sh
Last active September 4, 2019 11:24 — forked from dublx/retry.sh
Backup nested zfs volumes to Backblaze with duplicacy
#! /usr/bin/env bash
function tryUpload() {
(duplicacy backup -limit-rate 820 -threads 8 -stats) &&
(duplicacy prune -exclusive -keep 360:360 -keep 30:180 -keep 7:30 -keep 1:7)
return $?
}