Skip to content

Commit

Permalink
backup-and-restore: various fixes
Browse files Browse the repository at this point in the history
- preserve mode and ownership on main directories
- make sure the directories are well present prior to restoring files.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2051640

Signed-off-by: Guillaume Abrioux <[email protected]>
(cherry picked from commit 047af3a)
  • Loading branch information
guits committed Jul 5, 2022
1 parent a4f8567 commit f5020f6
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion infrastructure-playbooks/backup-and-restore-ceph-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
loop: "{{ file_to_backup.files }}"
delegate_to: "{{ target_node }}"

- name: preserve mode
- name: preserve mode on files
file:
path: "{{ backup_dir }}/{{ hostvars[target_node]['ansible_facts']['hostname'] }}/{{ item.path }}"
mode: "{{ item.mode }}"
Expand All @@ -82,13 +82,42 @@
- name: restore mode
when: mode == 'restore'
block:
- name: stat directories
stat:
path: "{{ backup_dir }}/{{ hostvars[target_node]['ansible_facts']['hostname'] }}{{ item }}"
register: dir_stat
loop:
- /etc/ceph
- /var/lib/ceph

- name: get a list of files to be restored
find:
paths:
- "{{ backup_dir }}/{{ hostvars[target_node]['ansible_facts']['hostname'] }}"
recurse: yes
register: file_to_restore

- name: create a list of directories to create
set_fact:
dir_to_create: "{{ dir_to_create | default([]) | union([{'path': item.item | replace(backup_dir + '/' + hostvars[target_node]['ansible_facts']['hostname'], ''), 'uid': item.stat.uid, 'gid': item.stat.gid, 'mode': item.stat.mode}]) }}"
loop: "{{ dir_stat.results }}"
delegate_to: "{{ target_node }}"

- name: create a liste of sub-directories to create
set_fact:
subdir_to_create: "{{ subdir_to_create | default([]) | union([{'path': item.path | dirname | replace(backup_dir + '/' + hostvars[target_node]['ansible_facts']['hostname'], ''), 'uid': item.uid, 'gid': item.gid, 'mode': item.mode}]) }}"
loop: "{{ file_to_restore.files }}"

- name: ensure directories are created
file:
state: directory
path: "{{ item.path }}"
mode: "{{ item.mode }}"
owner: "{{ item.uid }}"
group: "{{ item.gid }}"
loop: "{{ dir_to_create + subdir_to_create }}"
delegate_to: "{{ target_node }}"

- name: restore files
copy:
src: "{{ item.path }}"
Expand Down

0 comments on commit f5020f6

Please sign in to comment.