summaryrefslogtreecommitdiff
path: root/src/ceph_common.sh
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2009-05-27 11:49:02 -0700
committerSage Weil <sage@newdream.net>2009-05-27 14:03:46 -0700
commitf8d48369a67c8851b014b9b101c5d8fd04b332b2 (patch)
treebc0567f762a485b06309625aac0af1462da200c4 /src/ceph_common.sh
parent31d17fc641a8566b6debc77fca7e8d54891143a4 (diff)
downloadceph-f8d48369a67c8851b014b9b101c5d8fd04b332b2.tar.gz
initscript: fix instance check
Diffstat (limited to 'src/ceph_common.sh')
-rw-r--r--src/ceph_common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ceph_common.sh b/src/ceph_common.sh
index 822d00f3e14..4667713d65d 100644
--- a/src/ceph_common.sh
+++ b/src/ceph_common.sh
@@ -72,7 +72,7 @@ get_name_list() {
what="$what $bit"
;;
*)
- if echo " $bit " | grep -v -q " " $f " "; then
+ if echo " $bit " | grep -v -q " $f "; then
echo "$0: $type '$f' not found ($conf defines $bit)"
exit 1
fi