ansible/tasks/patch_post_exec.yml

13 lines
325 B
YAML
Raw Normal View History

# vim:ts=2:sw=2:et:filetype=ansible
---
- name: Execute post patch commands
2024-06-12 14:47:43 +02:00
ansible.builtin.shell:
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:
verbosity: 1
var: patch_post_exec_res