mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-13 22:32:29 +01:00
Recursively ignore subdirs in /etc/backup.d (Closes: #361102)
This commit is contained in:
parent
6d7328c51b
commit
5158f2569f
@ -1,4 +1,6 @@
|
|||||||
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=""
|
|||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user