For example with this code
yumrepo { 'erlang':
baseurl => '[url_repo]',
enabled => 1,
gpgcheck => 0,
}
package {'erlang':
ensure => installed,
require => Yumrepo['erlang']
}
I look for solutions that disable epel (and that's what I used) but is there any solution to use a specific repo?
Thanks!!
Luis