aboutsummaryrefslogtreecommitdiff
path: root/infrastructure/roles/podman/tasks/main.yaml
blob: 66be760a4c5e42e824e100bef45ee120492ec1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- name: install podman
  ansible.builtin.package:
    name: podman
- name: enable auto update
  ansible.builtin.systemd_service:
    name: podman-auto-update.timer
    enabled: true
    state: started
- name: configure containers subuids
  ansible.builtin.copy:
    dest: /etc/subuid
    content: |
      containers:2147483647:2147483648
- name: configure containers subgids
  ansible.builtin.copy:
    dest: /etc/subgid
    content: |
      containers:2147483647:2147483648