From: intrigeri Date: Sat, 8 Apr 2006 10:44:55 +0000 (+0000) Subject: Recursively ignore subdirs in /etc/backup.d (Closes: #361102) X-Git-Tag: backupninja-0.9.4~64 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=5158f2569fd252617dfbfc8f50a540640285d32b Recursively ignore subdirs in /etc/backup.d (Closes: #361102) --- diff --git a/ChangeLog b/ChangeLog index 5c23aa9..b1db818 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ version 0.9.4 -- unreleased + backupninja changes + Recursively ignore subdirs in /etc/backup.d (Closes: #361102) handler changes mysql: . Fixed improper use of $vuserhome (Debian: #351083) diff --git a/src/backupninja.in b/src/backupninja.in index b0766eb..2835a3c 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -455,7 +455,7 @@ errormsg="" if [ "$singlerun" ]; then files=$singlerun else - files=`find $configdirectory -mindepth 1 ! -name '.*.swp' | sort -n` + files=`find $configdirectory -mindepth 1 -maxdepth 1 -type f ! -name '.*.swp' | sort -n` fi for file in $files; do