fml forgot dump was within /data - fix backup location to copy from to get single file so we can fetc hit

This commit is contained in:
BSounder 2022-07-07 21:04:31 -07:00
parent 94cebe52a9
commit 88ece285d1
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@
- name: Copy backup we just took to home/{{ main_user }}/backups
when: backup_db and not __backup_result.failed
ansible.builtin.copy:
src: /home/{{ main_user }}/rocketchat/dump/{{ ansible_date_time.iso8601 }}
src: /home/{{ main_user }}/rocketchat/data/dump/{{ ansible_date_time.iso8601 }}
dest: /home/{{ main_user }}/backups/{{ ansible_date_time.iso8601 }}.gzip
remote_src: yes