zuul-jobs/test-playbooks/ensure-podman/main.yaml
Sorin Sbarnea 69c53666de Add support for RedHat platforms on ensure-podman
- makes ensure-podman work on additional platforms
- prevents regression on new platforms fedora-30 and centos-8
- enables validation of podman engine

Change-Id: I5842ad22d94522f707ef743622b8950839d96dff
2020-04-06 18:52:07 +01:00

17 lines
268 B
YAML

- hosts: all
vars:
ensure_podman_validate: true
roles:
- ensure-podman
- hosts: all
tasks:
- name: Exercise podman
command: /usr/bin/podman info
register: output
- name: Debug output
debug:
msg: '{{ output.stdout }}'