Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rocky 8 updates #42

Merged
merged 4 commits into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 5 additions & 14 deletions tasks/RedHat.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
---
- name: Add mariadb repository
ansible.builtin.yum_repository:
name: mariadb
description: mariadb repository at http://downloads.mariadb.org/mariadb/repositories/
baseurl: "http://yum.mariadb.org/10.6/rhel9-amd64"
gpgkey: https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck: yes
become: true

- name: Install doxygen with crb enabled
- name: Install packages which require powertools repo enabled
become: true
ansible.builtin.dnf:
name: doxygen
enablerepo: crb
name:
- doxygen # C++ documentation
- gperf # Qt build dependency
enablerepo: powertools
state: present

- name: Install required packages
Expand Down Expand Up @@ -42,9 +35,7 @@
- rsync # for syncing documentation
- bison # Qt build dependency
- flex # Qt build dependency
- gperf # Qt build dependency
- diffutils # for diffing large results in conquest tests
- MariaDB
- xorg-x11-utils # for xdpyinfo
- glx-utils # for glxinfo
- mesa-dri-drivers # for OpenGL to work inside XDummy
Expand Down
Loading