My backup scripts and tools
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- set -e
- . "$(dirname "$0")"/vars.sh
-
- export BORG_PASSCOMMAND="cat ${BORG_DIR}/passphrase"
- export BORG_BASE_DIR=${BORG_DIR}
- export BORG_CACHE_DIR=${BORG_DIR}/cache
- export BORG_CONFIG_DIR=${BORG_DIR}/config
- export BORG_RSH="ssh -F $SSH/config -i $SSH/id_ecdsa_appendonly"
-
- exec "${BORG_BIN}" "$@"
|