fixed bug where config files were run in order of

time created instead of in numeric order.
This commit is contained in:
Elijah Saxon 2005-04-08 17:02:52 +00:00
parent 76711771db
commit fb77e73173

View File

@ -429,7 +429,7 @@ errormsg=""
if [ "$singlerun" ]; then
files=$singlerun
else
files=`find $configdirectory -mindepth 1 `
files=`find $configdirectory -mindepth 1 | sort -n`
fi
for file in $files; do