From fc2d5e522fdd8b168ff4379b2ed24bec6b347b97 Mon Sep 17 00:00:00 2001 From: Mark Kogan Date: Wed, 23 Dec 2020 13:54:32 +0200 Subject: [PATCH] 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 --- src/vstart.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.47.3