]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
mds: rename mds_socket fact 1871/head
authorGuillaume Abrioux <gabrioux@redhat.com>
Fri, 8 Sep 2017 13:57:58 +0000 (15:57 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Fri, 8 Sep 2017 13:57:58 +0000 (15:57 +0200)
Rename this fact to keep consistency with handlers in `ceph-defaults`.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
roles/ceph-mds/tasks/docker/enable_multimds.yml

index 7bf6e3e4009f96eb5871cf827984a83a85af84e9..e050f79ef3a5bb7402551d2073c73f894e31cd25 100644 (file)
@@ -1,10 +1,10 @@
 ---
 - name: wait for mds socket to exist
   command: "{{ docker_exec_cmd }} stat /var/run/ceph/{{ cluster }}-mds.{{ ansible_hostname }}.asok"
-  register: mds_socket
+  register: multi_mds_socket
   retries: 5
   delay: 15
-  until: mds_socket.rc == 0
+  until: multi_mds_socket.rc == 0
 
 - name: enable multimds if requested when mon is containerized
   command: "{{ docker_exec_cmd }} ceph --cluster {{ cluster }} fs set {{ cephfs }} allow_multimds true --yes-i-really-mean-it"