From b0781a1f791f0d5285fda21c5edff1b902e18b3b Mon Sep 17 00:00:00 2001 From: Anthony Rose Date: Tue, 17 Dec 2024 15:40:26 +0000 Subject: [PATCH] Enable CRB on EL 10 --- roles/el/tasks/main.yml | 1 + roles/el/tasks/repos.yml | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 roles/el/tasks/repos.yml diff --git a/roles/el/tasks/main.yml b/roles/el/tasks/main.yml index f66d686..656a9f8 100644 --- a/roles/el/tasks/main.yml +++ b/roles/el/tasks/main.yml @@ -13,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +- import_tasks: repos.yml - import_tasks: packages-cli.yml - import_tasks: packages-gui.yml when: gui == true diff --git a/roles/el/tasks/repos.yml b/roles/el/tasks/repos.yml new file mode 100644 index 0000000..e617fac --- /dev/null +++ b/roles/el/tasks/repos.yml @@ -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'