Custom backup file list. #1295
kan-ibal
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Backup via web interface is very handy but not configurable. I keep my custom setup file outside system directories and rAudio /srv directory to keep them safe from updates. The con is that I can't backup those file using rAudio backup.
Is there a possibility to implement custom-backup.conf with custom file list to backup?
Something like:
mapfile -t customfiles < /home/custom-backup.conf
for file in ${customfiles[@]}; do
if [[ -e $file ]]; then
mkdir -p $dirconfig/$( dirname $file )
cp {,$dirconfig}$file
fi
done
in system-databackup.sh and custom-backup.conf configured in rAudio web interface.
Beta Was this translation helpful? Give feedback.
All reactions