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

23 lines
618 B
YAML

---
- 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 }}"
- name: "Create all extra tags and their packages"
ktdreyer.koji_ansible.koji_tag:
name: "{{ item }}"
state: present
packages: "{{ koji_extra_pkgs }}"
with_items: "{{ all_koji_extra_tags }}"
- name: "Create all plus tags and their packages"
ktdreyer.koji_ansible.koji_tag:
name: "{{ item }}"
state: present
packages: "{{ koji_plus_pkgs }}"
with_items: "{{ all_koji_plus_tags }}"
...