From: Mark Kogan Date: Wed, 23 Dec 2020 11:54:32 +0000 (+0200) Subject: vstart: fix -o ceph.conf options processing X-Git-Tag: v16.1.0~168^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38702%2Fhead;p=ceph.git vstart: fix -o ceph.conf options processing options passed to vstart.sh via the -o param and bunched on the same line without line termination between them hence not being parsed. ex: ``` cat ./ceph.conf ... debug_ms=0 debug_objecter=0 bluestore_debug_enforce_settings=ssd bluestore_block_size=214748364800 ... ``` Fixes: https://tracker.ceph.com/issues/48708 Signed-off-by: Mark Kogan --- diff --git a/src/vstart.sh b/src/vstart.sh index 50130833b6c8..b3f8993c20ca 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -408,7 +408,8 @@ case $1 in shift ;; -o) - extra_conf="$extra_conf $2" + extra_conf="$extra_conf $2 +" shift ;; --cache)