Merge branch '5.1.10'

# Conflicts:
#	Shorewall/lib.cli-std
This commit is contained in:
Tom Eastep 2017-12-31 14:06:52 -08:00
commit 4f50303318
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10

View File

@ -382,13 +382,21 @@ uptodate() {
local dir
local ifs
if [ -n "$g_shorewalldir" ]; then
if [ -n "$(find ${dir} -maxdepth 1 -newer $1)" ]; then
return 1;
fi
fi
ifs="$IFS"
IFS=':'
for dir in $g_shorewalldir $CONFIG_PATH; do
if [ -n "$(find ${dir} -mindepth 1 -maxdepth 1 -newer $1)" ]; then
IFS="$ifs"
return 1;
for dir in $CONFIG_PATH; do
if [ -n "$dir" ]; then
if [ -n "$(find ${dir} -maxdepth 1 -newer $1)" ]; then
IFS="$ifs"
return 1;
fi
fi
done