initial changes and cleanup prior to service management code

This commit is contained in:
2024-07-10 19:45:25 -04:00
parent 4b15e3396b
commit 25c7c4a19e
8 changed files with 127 additions and 12 deletions

View File

@ -1,8 +1,18 @@
---
- name: Perform a ReaR backup if any disk modifications are to be made
ansible.builtin.import_playbook: rhc.rear.rear_backup
when:
- bigboot_execute_bigboot | bool
- not bigboot_skip_rear_backup | bool
- name: Perform a ReaR backup
hosts: all
become: true
gather_facts: true
strategy: free
vars_files:
- bigboot_vars.yml
tasks:
- name: Perform a ReaR backup if any disk modifications are to be made
ansible.builtin.import_playbook: rhc.rear.rear_backup
when:
- bigboot_execute_bigboot | bool
- not bigboot_skip_rear_backup | bool
...