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/7216/head
Guillaume Abrioux 2022-06-15 10:46:52 +02:00
parent a67defec2f
commit 6615d97015
1 changed files with 2 additions and 2 deletions

View File

@ -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 }}"