diff --git a/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml b/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml index 0a457d9ee..0b32f20a8 100644 --- a/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml +++ b/tripleo_ansible/roles/backup_and_restore/tasks/ceph_authentication.yml @@ -64,6 +64,12 @@ {{ tripleo_container_cli }} exec ceph-mon-{{ inventory_hostname }} bash -c "ceph auth export" register: bar_ceph_authentication_content + - name: Save ceph authentication at {{ tripleo_backup_and_restore_ceph_auth_file }} + copy: + dest: "{{ tripleo_backup_and_restore_ceph_auth_file }}" + content: | + {{ bar_ceph_authentication_content.stdout }} + - name: Ceph installed with cephadm when: - cephadm_ls.stdout is defined @@ -74,8 +80,8 @@ command: cephadm shell -- ceph auth export register: bar_ceph_authentication_content -- name: Save ceph authentication at {{ tripleo_backup_and_restore_ceph_auth_file }} - copy: - dest: "{{ tripleo_backup_and_restore_ceph_auth_file }}" - content: | - {{ bar_ceph_authentication_content.stdout }} + - name: Save ceph authentication at {{ tripleo_backup_and_restore_ceph_auth_file }} + copy: + dest: "{{ tripleo_backup_and_restore_ceph_auth_file }}" + content: | + {{ bar_ceph_authentication_content.stdout }}