diff options
author | Adam Kupczyk <akupczyk@redhat.com> | 2019-06-17 09:43:44 +0200 |
---|---|---|
committer | Adam Kupczyk <akupczyk@redhat.com> | 2019-06-17 09:43:44 +0200 |
commit | 45f070bc1294230ec58c6367c1fe169ad375a044 (patch) | |
tree | 7dd623c9acceedced5b4a7fbb6f68e0a83d25a28 /src/vstart.sh | |
parent | Merge pull request #28559 from dillaman/wip-40368 (diff) | |
download | ceph-45f070bc1294230ec58c6367c1fe169ad375a044.tar.xz ceph-45f070bc1294230ec58c6367c1fe169ad375a044.zip |
vstart.sh: Fix problem that all extra_conf got merged into single line.
Signed-off-by: Adam Kupczyk <akupczyk@redhat.com>
Diffstat (limited to '')
-rwxr-xr-x | src/vstart.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vstart.sh b/src/vstart.sh index 9af3c58097f..e7611e06566 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -360,7 +360,8 @@ case $1 in shift ;; -o ) - extra_conf="$extra_conf $2" + extra_conf="$extra_conf $2 +" shift ;; --cache ) |