ansible-buildsys-management/tasks/koji/setup_non_build_tags.yml

9 lines
205 B
YAML
Raw Normal View History

2022-12-14 07:50:49 +00:00
---
- name: "Create all base tags and their packages"
ktdreyer.koji_ansible.koji_tag:
name: "{{ item }}"
state: present
packages: "{{ koji_pkgs }}"
with_items: "{{ all_koji_nb_tags }}"
...