From: Sage Weil Date: Fri, 27 Sep 2019 19:56:43 +0000 (-0500) Subject: test_ceph_daemon.sh: test deploy mds too X-Git-Tag: v15.1.0~1313^2~65 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9a50a2628c0555f12e2a66afbbdf5d3ff6500de6;p=ceph.git test_ceph_daemon.sh: test deploy mds too Signed-off-by: Sage Weil --- diff --git a/test_ceph_daemon.sh b/test_ceph_daemon.sh index 701319911e5b..126da073b41d 100755 --- a/test_ceph_daemon.sh +++ b/test_ceph_daemon.sh @@ -1,6 +1,6 @@ #!/bin/bash -ex -fsid=0a464092-dfd0-11e9-b903-002590e526e8 +fsid=2a833e3f-53e4-49a7-a7a0-bd89d193ab62 ../src/ceph-daemon rm-cluster --fsid $fsid --force @@ -36,5 +36,17 @@ bin/ceph -c c -k k auth get-or-create mgr.y \ --keyring k-mgr.y \ --config c +# mds.{k,j} +for id in k j; do + bin/ceph -c c -k k auth get-or-create mds.$id \ + mon 'allow profile mds' \ + mgr 'allow profile mds' \ + osd 'allow *' \ + mds 'allow *' > k-mds.$id + ../src/ceph-daemon deploy --name mds.$id \ + --fsid $fsid \ + --keyring k-mds.$id \ + --config c +done bin/ceph -c c -k k -s