distribution/packages/sysutils/rclone/sources/cloud_restore

16 lines
415 B
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2020-present Fewtarius
CONFIGPATH="/storage/.config"
if [ -e "${CONFIGPATH}/rsync.conf" ]
then
source ${CONFIGPATH}/rsync.conf
else
MOUNTPATH="/storage/cloud"
SYNCPATH="GAMES"
BACKUPPATH="/storage/roms"
fi
rclonectl mount ${MOUNTPATH}
rsync -raiv --include-from="${CONFIGPATH}/rsync-exclude-rules" ${MOUNTPATH}/${SYNCPATH}/ ${BACKUPPATH}/