9 lines
210 B
Bash
Executable file
9 lines
210 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
export BORG_REPO="/media/backup/"
|
|
|
|
if [ "$1" = "service" ]; then
|
|
rclone sync "${BORG_REPO}" gdrive-backup:hot-repo/
|
|
else
|
|
rclone sync --progress "${BORG_REPO}" gdrive-backup:hot-repo/
|
|
fi
|