From: Kefu Chai Date: Sun, 25 Jul 2021 06:27:53 +0000 (+0800) Subject: vstart.sh: set objectstore to "cyanstore" if --cyanstore is specified X-Git-Tag: v17.1.0~1282^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c2ec6489fa515a12e502ce9c17b04d4506fde64f;p=ceph.git vstart.sh: set objectstore to "cyanstore" if --cyanstore is specified in e6ed65db8b4e0a2f8026c2e35a12dd292c5f2b8c, "cyanstore" is added to the help message of vstart.sh, but we should also check for this option, and set the ceph option accordingly. in this change, the option is checked and "objectstore" is updated accordingly. Signed-off-by: Kefu Chai --- diff --git a/src/vstart.sh b/src/vstart.sh index cec6104cf1b3..42aad4f1016d 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -413,6 +413,9 @@ case $1 in --memstore) objectstore="memstore" ;; + --cyanstore) + objectstore="cyanstore" + ;; --seastore) objectstore="seastore" ;;