I have the following file structure:
$ tree roles/os
roles/os
├── handlers
│ └── main.yaml
└── tasks
└── main.yaml
tasks/main.yaml
:
---
- name: Upgrade all packages
ansible.builtin.apt:
update_cache: true
upgrade: dist
- name: Update bootloader firmware
ansible.builtin.command: rpi-eeprom-update -ad
changed_when: eeprom_update.stdout.find('updates pending') != -1
notify: Perform reboot
register: eeprom_update
- name: Check reboot status
ansible.builtin.stat:
path: /var/run/reboot-required
get_checksum: false
changed_when: reboot.stat.exists
notify: Perform reboot
register: reboot
handlers/main.yaml
:
---
- name: Perform reboot
ansible.builtin.reboot:
post_reboot_delay: 30
when: >
eeprom_update.stdout.find('updates pending') != -1 or
reboot.stat.exists
With the above configuration, a reboot is performed, only if a change occurs.
Is that the correct way to perform a conditional reboot with a handler?
You don't have to repeat the conditions in the handler. The conditions were used to notify the handler in the tasks.
Remove the condition from the handler
Notes:
gives
The reboot file exists
The playbook
gives