I'm trying to install a few packages on CentOS 8 via cloud-init
, like this:
package_upgrade: true
packages:
- firewalld
- htop
One of them one of them requires epel-release
repo to be installed first:
No match for argument: htop
2019-10-21 15:50:35,444 - util.py[WARNING]: Failed to install packages: ['firewalld', 'htop']
How can I install epel-release
first and then install packages?