zuul-jobs/test-playbooks/ensure-podman/main.yaml

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