From bf7cab1d94e828786f31a6f4dd8c63ff40073f83 Mon Sep 17 00:00:00 2001 From: Saibotk Date: Mon, 20 Jan 2025 00:25:28 +0100 Subject: [PATCH] remove!(epel): unused --- roles/epel/README.md | 24 ------------------------ roles/epel/meta/main.yml | 15 --------------- roles/epel/tasks/main.yml | 24 ------------------------ 3 files changed, 63 deletions(-) delete mode 100644 roles/epel/README.md delete mode 100644 roles/epel/meta/main.yml delete mode 100644 roles/epel/tasks/main.yml diff --git a/roles/epel/README.md b/roles/epel/README.md deleted file mode 100644 index 63a8c89..0000000 --- a/roles/epel/README.md +++ /dev/null @@ -1,24 +0,0 @@ -EPEL -========= - -Installs the `epel-release` package via yum. - -Requirements ------------- - -None - -Role Variables --------------- - -None - -Dependencies ------------- - -None, except for a CentOS 7 system. - -License -------- - -GPL-3.0-only diff --git a/roles/epel/meta/main.yml b/roles/epel/meta/main.yml deleted file mode 100644 index fba54e3..0000000 --- a/roles/epel/meta/main.yml +++ /dev/null @@ -1,15 +0,0 @@ -galaxy_info: - author: saibotk - description: Installs the epel-release package. - license: GPL-3.0-only - min_ansible_version: "2.9" - standalone: true - - platforms: - - name: EL - versions: - - "7" - - galaxy_tags: [] - -dependencies: [] diff --git a/roles/epel/tasks/main.yml b/roles/epel/tasks/main.yml deleted file mode 100644 index 77302cd..0000000 --- a/roles/epel/tasks/main.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -# Tasks file for the epel role - -# Infrastructure -# Ansible instructions to deploy the infrastructure -# Copyright (C) 2019-2020 Christoph (Sheogorath) Kern -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, version 3 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -- name: Install EPEL repository package # noqa fqcn - ansible.builtin.yum: - name: epel-release - state: present - become: true