From: Hannes von Haugwitz Date: Wed, 12 Jun 2019 13:18:17 +0000 (+0200) Subject: doc: update mondb recovery script X-Git-Tag: v15.1.0~2474^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=65c6425489cac38f4d54b955bc64abc123fa30c5;p=ceph-ci.git doc: update mondb recovery script - be specific about stopped OSDs - add missing '--no-mon-config' option - fix indent of here script delimiting identifier - use $host variable in for loop Signed-off-by: Hannes von Haugwitz --- diff --git a/doc/rados/troubleshooting/troubleshooting-mon.rst b/doc/rados/troubleshooting/troubleshooting-mon.rst index ae6cfa53008..b2f3a2137a9 100644 --- a/doc/rados/troubleshooting/troubleshooting-mon.rst +++ b/doc/rados/troubleshooting/troubleshooting-mon.rst @@ -419,16 +419,16 @@ information stored in OSDs.:: ms=/root/mon-store mkdir $ms - # collect the cluster map from OSDs + # collect the cluster map from stopped OSDs for host in $hosts; do - rsync -avz $ms/. user@host:$ms.remote + rsync -avz $ms/. user@$host:$ms.remote rm -rf $ms - ssh user@host <