Task reorder/move; log path update

This commit is contained in:
2024-08-01 10:13:25 -04:00
parent 8245abf806
commit 339dcdd6ad
3 changed files with 12 additions and 12 deletions

View File

@ -29,3 +29,12 @@
when:
- item['item'] not in bigboot_protected_services
- item['stdout'] | regex_replace('^.*=(.*$)', '\\1') | community.general.to_minutes >= bigboot_service_max_timeout | int
- name: Services disabled notice
ansible.builtin.debug:
msg: >-
The following services were disabled, and will be re-enabled post
Bigboot execution: {{ bigboot_systemd_disabled_services | join(',') }}
when:
- bigboot_systemd_disabled_services is defined
- bigboot_systemd_disabled_services | length > 0