2cb9f249a8
The old role will be kept and include ensure-podman for backwards-compatability. Change-Id: I21cfdfef4a88f66f51d139abed04f70b3228a22d
15 lines
227 B
YAML
15 lines
227 B
YAML
- hosts: all
|
|
roles:
|
|
- ensure-podman
|
|
|
|
- hosts: all
|
|
tasks:
|
|
|
|
- name: Exercise podman
|
|
command: /usr/bin/podman info
|
|
register: output
|
|
|
|
- name: Debug output
|
|
debug:
|
|
msg: '{{ output.stdout }}'
|