Add epel-repo role

This commit is contained in:
Timo Makinen 2021-09-01 14:19:47 +00:00
parent 4bf65be84f
commit 26e65776ac

9
epel-repo/tasks/main.yml Normal file
View file

@ -0,0 +1,9 @@
---
- name: check support
fail:
msg: Role not supported in your system
when: ansible_os_family != "RedHat"
- package:
name: epel-release
state: installed