16 lines
434 B
Bash
Executable file
16 lines
434 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" --prune-empty-dirs ${BACKUPPATH}/ ${MOUNTPATH}/${SYNCPATH}/
|