role_podman/tasks/main.yml

19 lines
475 B
YAML
Raw Normal View History

2023-12-21 16:30:57 +00:00
---
# tasks file for podman
- name: Importer les tâches d'installation
2024-06-06 00:16:51 +00:00
ansible.builtin.import_tasks:
file: installation.yml
2023-12-21 16:30:57 +00:00
tags: installation
- name: Importer les tâches de configuration
2024-06-06 00:16:51 +00:00
ansible.builtin.include_tasks:
file: configuration.yml
2023-12-21 16:30:57 +00:00
loop: "{{ podman_containers }}"
loop_control:
label: "{{ container.name }}"
loop_var: container
vars:
container_user: "podman-{{ container.user | default(container.name) }}"
2024-06-06 00:16:51 +00:00
tags: configuration