zuul-jobs/test-playbooks/ensure-podman/main.yaml
vass 2cb9f249a8 Rename install-podman to ensure-podman for consistency
The old role will be kept and include ensure-podman for backwards-compatability.

Change-Id: I21cfdfef4a88f66f51d139abed04f70b3228a22d
2020-04-04 15:41:29 -04:00

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 }}'