myos/ansible/roles/hosts/handlers/main.yml

13 lines
312 B
YAML
Raw Normal View History

2021-02-09 17:05:00 +01:00
---
# file: handlers/main.yml
- name: update boot config
environment:
PATH: "{{ ansible_env.PATH }}:/usr/sbin:/sbin"
with_together:
- '{{ boot_config }}'
- '{{ boot_config_handler_notify.results }}'
command: "update-extlinux"
when: item.1.changed and item.0.dest == "/etc/update-extlinux.conf"
2021-07-14 21:38:30 +02:00