summaryrefslogtreecommitdiff
path: root/bin/couchdb.tpl.in
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2009-04-21 16:26:14 +0000
committerNoah Slater <nslater@apache.org>2009-04-21 16:26:14 +0000
commit16c5d1c267a3a09cd6ad4520056bd5fbb51bc879 (patch)
tree2f76c5d5f02199f363105fc655676cec34cff6b7 /bin/couchdb.tpl.in
parent5d25740864abdcb5e6a0988ed9341a1a077f01a9 (diff)
added -maxdepth 1 to configuration directory find invokation
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@767208 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bin/couchdb.tpl.in')
-rw-r--r--bin/couchdb.tpl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/couchdb.tpl.in b/bin/couchdb.tpl.in
index f74f863f..8ae916d3 100644
--- a/bin/couchdb.tpl.in
+++ b/bin/couchdb.tpl.in
@@ -122,7 +122,7 @@ EOF
}
_add_config_dir () {
- for file in `find "$1" -mindepth 1 -type f`; do
+ for file in `find "$1" -mindepth 1 -maxdepth 1 -type f`; do
_add_config_file $file
done
}