This commit is contained in:
Chris Hammer 2024-07-11 10:26:09 -04:00
parent b76ba8933e
commit f8b500a0dc
2 changed files with 7 additions and 19 deletions

View File

@ -22,8 +22,8 @@
- name: Perform a ReaR backup if any disk modifications are to be made - name: Perform a ReaR backup if any disk modifications are to be made
ansible.builtin.import_playbook: rhc.rear.rear_backup ansible.builtin.import_playbook: rhc.rear.rear_backup
when: when:
- bigboot_execute_bigboot | bool - bigboot_execute_bigboot | default('false') | bool
# - not bigboot_skip_rear_backup | bool - not bigboot_skip_rear_backup | default('true') | bool
- name: Perform logical volume and boot parition resizing as needed - name: Perform logical volume and boot parition resizing as needed

View File

@ -1,18 +1,6 @@
--- ---
- name: Perform a ReaR backup - name: Perform a ReaR backup if any disk modifications are to be made
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 ansible.builtin.import_playbook: rhc.rear.rear_backup
when: when:
- bigboot_execute_bigboot | bool - bigboot_execute_bigboot | default('false') | bool
- not bigboot_skip_rear_backup | bool - not bigboot_skip_rear_backup | default('true') | bool
...