]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
src/vstart.sh: default os to filestore for FreeBSD 17454/head
authorxie xingguo <xie.xingguo@zte.com.cn>
Mon, 4 Sep 2017 13:09:12 +0000 (21:09 +0800)
committerxie xingguo <xie.xingguo@zte.com.cn>
Mon, 4 Sep 2017 13:09:12 +0000 (21:09 +0800)
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
src/vstart.sh

index ee10520e3d2440a55ab2011a58dcb26892cf96e9..8b38ffb85b903561e89103f0f5d54cf48250fe67 100755 (executable)
@@ -106,7 +106,11 @@ overwrite_conf=1
 cephx=1 #turn cephx on by default
 cache=""
 memstore=0
-bluestore=1
+if [ `uname` = FreeBSD ]; then
+    bluestore=0
+else
+    bluestore=1
+fi
 rgw_frontend="civetweb"
 rgw_compression=""
 lockdep=${LOCKDEP:-1}