This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
borg_interface/backup_to_external.sh

7 lines
211 B
Bash
Raw Normal View History

#!/bin/bash
2016-12-31 15:20:25 +01:00
SCRIPTPATH=$(dirname -- "$(readlink -e -- "$BASH_SOURCE")")
PATH=$PATH:$SCRIPTPATH/bin/
2016-12-31 15:47:41 +01:00
source $SCRIPTPATH/borg_interface/bin/activate
python3 $SCRIPTPATH/borg_interface/backup_to_external.py
exit 0