13 lines
293 B
YAML
13 lines
293 B
YAML
|
# vim:ts=2:sw=2:et:filetype=ansible
|
||
|
---
|
||
|
- name: Execute post patch commands
|
||
|
shell:
|
||
|
cmd: '{{ item }}'
|
||
|
loop: '{{ patch_post_exec }}'
|
||
|
register: patch_post_exec_res
|
||
|
|
||
|
- name: show results of patch_post_exec actions
|
||
|
debug:
|
||
|
verbosity: 1
|
||
|
var: patch_post_exec_res
|