Signed-off-by: Samuel Just <sjust@redhat.com>
usage=$usage"\t--rgw_port specify ceph rgw http listen port\n"
usage=$usage"\t--rgw_frontend specify the rgw frontend configuration\n"
usage=$usage"\t--rgw_compression specify the rgw compression plugin\n"
+usage=$usage"\t--seastore use seastore as crimson osd backend\n"
usage=$usage"\t-b, --bluestore use bluestore as the osd objectstore backend (default)\n"
usage=$usage"\t-f, --filestore use filestore as the osd objectstore backend\n"
usage=$usage"\t-K, --kstore use kstore as the osd objectstore backend\n"
--memstore)
objectstore="memstore"
;;
+ --seastore)
+ objectstore="seastore"
+ ;;
-b | --bluestore)
objectstore="bluestore"
;;