1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_collection_pretix.git synced 2024-10-28 22:01:03 +01:00
ansible_collection_pretix/roles/pretix/tasks/packages.yml

16 lines
351 B
YAML
Raw Normal View History

2024-09-28 12:52:23 +02:00
---
- name: Update apt repo-cache on debian/ubuntu hosts
become: true
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
when:
- ansible_pkg_mgr == "apt"
- name: Install Required packages
become: true
ansible.builtin.package:
name: "{{ item }}"
state: 'present'
loop: "{{ pretix__packages | flatten(1) }}"