cdff4b7835
A simple role to install podman packages. Change-Id: I135fab8474b3564bb4ab1f2b19d4645d4a86f560
15 lines
228 B
YAML
15 lines
228 B
YAML
- hosts: all
|
|
roles:
|
|
- install-podman
|
|
|
|
- hosts: all
|
|
tasks:
|
|
|
|
- name: Exercise podman
|
|
command: /usr/bin/podman info
|
|
register: output
|
|
|
|
- name: Debug output
|
|
debug:
|
|
msg: '{{ output.stdout }}'
|