mirror of
https://github.com/rocky-linux/ansible-role-kojid.git
synced 2024-10-31 18:41:23 +00:00
22 lines
487 B
YAML
22 lines
487 B
YAML
---
|
|
# Install packages
|
|
- name: Install required packages
|
|
ansible.builtin.dnf:
|
|
name: "{{ kojid_packages }}"
|
|
state: present
|
|
|
|
# armv7l specific
|
|
- name: Install libkcapi for increased armv7 sockets
|
|
ansible.builtin.dnf:
|
|
name: libkcapi
|
|
state: present
|
|
when: ansible_architecture == 'armv7l'
|
|
|
|
# x86_64 specific
|
|
- name: Install x86_64 specific packages
|
|
ansible.builtin.dnf:
|
|
name:
|
|
- python3-osbs-client
|
|
state: present
|
|
when: ansible_architecture == 'x86_64'
|