You've already forked role_podman
feat: Add rootful capability
This commit is contained in:
@@ -1,17 +1,25 @@
|
||||
---
|
||||
# tasks file for podman
|
||||
|
||||
- name: Import prepare tasks
|
||||
ansible.builtin.import_tasks:
|
||||
file: prepare.yml
|
||||
- name: Install packages
|
||||
ansible.builtin.dnf:
|
||||
name: "{{ podman_packages }}"
|
||||
become: true
|
||||
|
||||
- name: Import configuration tasks
|
||||
ansible.builtin.import_tasks:
|
||||
file: config.yml
|
||||
when: podman_quadlets_rootless | length > 0
|
||||
|
||||
- name: Import management tasks
|
||||
- name: Import management tasks for rootless quadlets
|
||||
ansible.builtin.import_tasks:
|
||||
file: manage.yml
|
||||
file: manage_rootless.yml
|
||||
when: podman_quadlets_rootless | length > 0
|
||||
|
||||
- name: Import management tasks for rootful quadlets
|
||||
ansible.builtin.import_tasks:
|
||||
file: manage_rootful.yml
|
||||
when: podman_quadlets_rootful | length > 0
|
||||
|
||||
- name: Flush handlers
|
||||
ansible.builtin.meta: flush_handlers
|
||||
|
||||
Reference in New Issue
Block a user