Modularity updates

This commit is contained in:
2025-03-04 14:54:39 -05:00
parent ee6912995c
commit e42fb554a6
7 changed files with 62 additions and 38 deletions

View File

@ -0,0 +1,12 @@
---
- name: Create success file directory if not present
ansible.builtin.file:
path: "{{ rear_backup_success_file_path }}"
state: directory
mode: "0755"
- name: Create backup success file
ansible.builtin.copy:
dest: "{{ rear_backup_success_file_path }}/{{ rear_backup_workflow }}_rear_success"
content: "success\n"
mode: "0644"