2024-03-14 11:12:51 -04:00

16 lines
363 B
YAML

---
- name: Update ReaR configuration file
ansible.builtin.template:
src: local.conf.j2
dest: /etc/rear/local.conf
owner: root
group: root
mode: "0600"
- name: Execute ReaR backup
ansible.builtin.debug:
msg: "Executing ReaR backup explicitly including the '{{ bigboot_lv_vg_name | default('unknown') | trim }}' logical volume."
...