2024-06-12 11:22:54 +02:00
|
|
|
# vim:ts=2:sw=2:et:filetype=ansible
|
|
|
|
---
|
|
|
|
- name: Execute post patch commands
|
2024-06-12 14:47:43 +02:00
|
|
|
ansible.builtin.shell:
|
2024-06-12 11:22:54 +02:00
|
|
|
cmd: '{{ item }}'
|
|
|
|
loop: '{{ patch_post_exec }}'
|
|
|
|
register: patch_post_exec_res
|
|
|
|
|
2024-06-12 14:47:43 +02:00
|
|
|
- name: Show results of patch_post_exec actions
|
|
|
|
ansible.builtin.debug:
|
2024-06-12 11:22:54 +02:00
|
|
|
verbosity: 1
|
|
|
|
var: patch_post_exec_res
|