zuul-jobs/roles/ensure-podman/tasks/Ubuntu.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
247 B
YAML

- name: Install projectatomic PPA
apt_repository:
repo: 'ppa:projectatomic/ppa'
state: present
become: yes
- name: Install podman
package:
name:
- podman
- uidmap
- slirp4netns
state: present
become: yes