ansible/tasks/patch_pre_exec.yml

13 lines
320 B
YAML

# vim:ts=2:sw=2:et:filetype=ansible
---
- name: Execute pre patch commands
ansible.builtin.shell:
cmd: '{{ item }}'
loop: '{{ patch_pre_exec }}'
register: patch_pre_exec_res
- name: Show results of patch_pre_exec actions
ansible.builtin.debug:
verbosity: 1
var: patch_pre_exec_res