From 88ece285d13a81a9e6821b9a1d01d06ee4352017 Mon Sep 17 00:00:00 2001 From: BSounder Date: Thu, 7 Jul 2022 21:04:31 -0700 Subject: [PATCH] fml forgot dump was within /data - fix backup location to copy from to get single file so we can fetc hit --- tasks/rocketchat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/rocketchat.yml b/tasks/rocketchat.yml index 51795a5..f0e21dd 100644 --- a/tasks/rocketchat.yml +++ b/tasks/rocketchat.yml @@ -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