diff --git a/manifests/repo.pp b/manifests/repo.pp index dde28354..db382f87 100644 --- a/manifests/repo.pp +++ b/manifests/repo.pp @@ -1,7 +1,7 @@ # Wazuh App Copyright (C) 2018 Wazuh Inc. (License GPLv2) # Repo installation class wazuh::repo ( - $redhat_manage_epel = true, + $redhat_manage_epel = false, ) { case $::osfamily { @@ -55,16 +55,6 @@ baseurl => $baseurl } - if $redhat_manage_epel { - # Set up EPEL repo - # NOTE: This relies on the 'epel' module referenced in metadata.json - package { 'inotify-tools': - ensure => present - } - include epel - - Class['epel'] -> Package['inotify-tools'] - } } default: { fail('This ossec module has not been tested on your distribution') } }