Enable CRB on EL 10

This commit is contained in:
Anthony Rose 2024-12-17 15:40:26 +00:00
parent 825427c50b
commit b0781a1f79
2 changed files with 21 additions and 0 deletions

View file

@ -13,6 +13,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- import_tasks: repos.yml
- import_tasks: packages-cli.yml - import_tasks: packages-cli.yml
- import_tasks: packages-gui.yml - import_tasks: packages-gui.yml
when: gui == true when: gui == true

20
roles/el/tasks/repos.yml Normal file
View file

@ -0,0 +1,20 @@
---
# Copyright 2021-2024 Anthony Perkins
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Enable CRB repo
community.general.dnf_config_manager:
name: crb
state: enabled
when: ansible_distribution_major_version == '10'