Skip to content
Snippets Groups Projects
Commit 5158f256 authored by intrigeri's avatar intrigeri
Browse files

Recursively ignore subdirs in /etc/backup.d (Closes: #361102)

parent 6d7328c5
No related branches found
No related tags found
No related merge requests found
version 0.9.4 -- unreleased version 0.9.4 -- unreleased
backupninja changes
Recursively ignore subdirs in /etc/backup.d (Closes: #361102)
handler changes handler changes
mysql: mysql:
. Fixed improper use of $vuserhome (Debian: #351083) . Fixed improper use of $vuserhome (Debian: #351083)
......
...@@ -455,7 +455,7 @@ errormsg="" ...@@ -455,7 +455,7 @@ errormsg=""
if [ "$singlerun" ]; then if [ "$singlerun" ]; then
files=$singlerun files=$singlerun
else else
files=`find $configdirectory -mindepth 1 ! -name '.*.swp' | sort -n` files=`find $configdirectory -mindepth 1 -maxdepth 1 -type f ! -name '.*.swp' | sort -n`
fi fi
for file in $files; do for file in $files; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment