summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Mick <dan.mick@inktank.com>2012-12-12 19:38:35 -0800
committerDan Mick <dan.mick@inktank.com>2012-12-12 19:40:16 -0800
commitac92e4d6bd453ffc77e88ab3ec2d2015b70ba854 (patch)
tree4952e1006bdb22d908d2e5e07db69fbc417f7e65
parent9d714560ee680abc7185d42a7d3226198810960c (diff)
downloadceph-ac92e4d6bd453ffc77e88ab3ec2d2015b70ba854.tar.gz
/etc/init.d/ceph: fs_type assignment syntax error
This handles the remainder of 3581; it's a lot like the problem in mkcephfs, but it isn't mkcephfs. Fixes: #3581 Signed-off-by: Dan Mick <dan.mick@inktank.com>
-rw-r--r--src/init-ceph.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init-ceph.in b/src/init-ceph.in
index 788d7172979..b75f639a359 100644
--- a/src/init-ceph.in
+++ b/src/init-ceph.in
@@ -277,7 +277,7 @@ for name in $what; do
# try to fallback to to old keys
get_conf tmp_devs "" "btrfs devs"
if [ -n "$tmp_devs" ]; then
- fs_type = "btrfs"
+ fs_type="btrfs"
else
echo No filesystem type defined!
exit 0