data/scripts/backup: don't backup /var/log if it is not a directory

Origin commit data
------------------
Branch: ni/coolstream
Commit: c3abfa581f
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-10-05 (Thu, 05 Oct 2023)

Origin message was:
------------------
- data/scripts/backup: don't backup /var/log if it is not a directory

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2023-10-05 21:00:00 +02:00
parent ac3e287734
commit 7f435a1032
2 changed files with 10 additions and 4 deletions

View File

@@ -9,8 +9,7 @@ BAKF="/var/backup_flash.tar.gz"
TOBACKUP=""
SHOWINFO "backup to ${BAKF} ..."
# add tobackup.conf and its content
if [ -e "${USRF}" ]; then
TOBACKUP="$TOBACKUP ${USRF}"
while read i
@@ -18,6 +17,8 @@ if [ -e "${USRF}" ]; then
done < $USRF
fi
SHOWINFO "backup to ${BAKF} ..."
# check existence and skip files in /var
for i in $TOBACKUP; do
if [ -e "$i" -a ${i:0:${#VAR}} != ${VAR} ]; then