diff --git a/bigboot_setup_environment.yml b/bigboot_setup_environment.yml index d422f9c..2189a88 100644 --- a/bigboot_setup_environment.yml +++ b/bigboot_setup_environment.yml @@ -48,11 +48,10 @@ }) }}" rear_backup_skip: bigboot_rear_backup_skip | default(false) - - name: Execute ReaR backup - ansible.builtin.import_tasks: bigboot_rear_backup.yml - when: - - (bigboot_execute_bigboot | bool or bigboot_execute_bigboot | bool) - - not bigboot_rear_backup_skip | default(false) | bool - +- 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 or bigboot_execute_bigboot | bool) + - not bigboot_rear_backup_skip | default(false) | bool ...