more changes

This commit is contained in:
Chris Hammer 2024-07-17 17:35:59 -04:00
parent 66837ef5e3
commit 70335187c6

View File

@ -5,12 +5,23 @@
gather_facts: false
tasks:
- name: Debug test_set_stats - node2
# __bigboot_size_target: "{{ bigboot_size_target }}"
# __bigboot_adjacent_lvm: "/dev/mapper/system-root"
# __bigboot_execute_bigboot: true
# __bigboot_execute_shrink: "true"
# bigboot_size_target: "{{ bigboot_size_target }}"
# bigboot_skip_rear_backup: "{{ bigboot_skip_rear | default('false') }}"
- name: Debug __bigboot_size_target
ansible.builtin.debug:
msg: "Another node will use __bigboot_size_target -> {{ __bigboot_size_target }}"
when:
- __bigboot_size_target | length > 1
- __bigboot_execute_shrink | bool
- not bigboot_skip_rear_backup | bool
var: __bigboot_size_target
# - name: Debug test_set_stats - node2
# ansible.builtin.debug:
# msg: "Another node will use __bigboot_size_target -> {{ __bigboot_size_target }}"
# when:
# - __bigboot_size_target | length > 1
# - __bigboot_execute_shrink | bool
# - not bigboot_skip_rear_backup | bool
...