ping_check/node2.yml
2024-04-25 14:03:20 -04:00

17 lines
405 B
YAML

---
- name: Set stats test - node2
hosts: all
become: true
gather_facts: false
tasks:
- 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
...