mirror of https://github.com/ceph/ceph-ansible.git
backup-and-restore: fix a typo
Typo introduced during initial implementation.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2051640
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit e28c486e52
)
pull/7307/head
parent
2c2833b540
commit
85049464ce
|
@ -83,14 +83,14 @@
|
|||
- name: get a list of files to be restored
|
||||
find:
|
||||
paths:
|
||||
- "{{ backup_dir }}/{{ hostvars[_node]['ansible_facts']['hostname'] }}"
|
||||
- "{{ backup_dir }}/{{ hostvars[target_node]['ansible_facts']['hostname'] }}"
|
||||
recurse: yes
|
||||
register: file_to_restore
|
||||
|
||||
- name: restore files
|
||||
copy:
|
||||
src: "{{ item.path }}"
|
||||
dest: "{{ item.path | replace(backup_dir + '/' + hostvars[_node]['ansible_facts']['hostname'], '') }}"
|
||||
dest: "{{ item.path | replace(backup_dir + '/' + hostvars[target_node]['ansible_facts']['hostname'], '') }}"
|
||||
mode: preserve
|
||||
loop: "{{ file_to_restore.files }}"
|
||||
delegate_to: "{{ target_node }}"
|
Loading…
Reference in New Issue