mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
17 lines
404 B
Bash
17 lines
404 B
Bash
#!/usr/bin/env bash
|
|
# -*- mode: sh; sh-basic-offset: 2; indent-tabs-mode: nil; -*-
|
|
# vim: set filetype=sh sw=2 sts=2 expandtab autoindent:
|
|
#
|
|
# restic helper for backupninja
|
|
#
|
|
|
|
HELPERS="$HELPERS restic:fast_secure_efficient_backup"
|
|
|
|
function restic_wizard {
|
|
require_packages duplicity
|
|
|
|
# global variables
|
|
restic_title="restic action wizard"
|
|
restic_docs="https://restic.readthedocs.io/en/latest"
|
|
}
|