14 lines
348 B
YAML
14 lines
348 B
YAML
---
|
|
- name: Enable Extra Packages for Enterprise Linux
|
|
become: true
|
|
dnf:
|
|
state: latest
|
|
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
|
|
|
|
- name: Enable the power tools repository
|
|
become: true
|
|
lineinfile:
|
|
path: /etc/yum.repos.d/CentOS-PowerTools.repo
|
|
regexp: "enabled=(0|1)"
|
|
line: "enabled=1"
|