summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2009-10-04 12:39:53 +0000
committerJan Lehnardt <jan@apache.org>2009-10-04 12:39:53 +0000
commit93bc21dbaab3428f5c6cc29d4171c0479ddcdca6 (patch)
tree7e3751c5c13ea17929dafc43b21bccc48b2ab95c /bin
parentd6c411269c1159016c80ff6d244f1f9124f19329 (diff)
fix quoting to avoid unwanted shell expansion, closes COUCHDB-518
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@821534 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bin')
-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 06c93374..bdea97fe 100644
--- a/bin/couchdb.tpl.in
+++ b/bin/couchdb.tpl.in
@@ -120,7 +120,7 @@ EOF
}
_add_config_dir () {
- for file in `find "$1" -mindepth 1 -maxdepth 1 -type f -name *.ini`; do
+ for file in `find "$1" -mindepth 1 -maxdepth 1 -type f -name '*.ini'`; do
_add_config_file $file
done
}