14 lines
239 B
Bash
Executable file
14 lines
239 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
export BORG_REPO="/media/backup/"
|
|
|
|
if [ "$1" = "service" ]; then
|
|
extra_args=()
|
|
else
|
|
extra_args=(--progress)
|
|
fi
|
|
|
|
rclone sync "${extra_args[@]}" "${BORG_REPO}" gdrive-backup:hot-repo/
|