-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SIMP-7283 #close SIMP-7202 #comment Add EL8 support to simp-clamav
- Loading branch information
1 parent
3601ec1
commit 77a5f7d
Showing
6 changed files
with
77 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
oel6: | ||
roles: | ||
- default | ||
- master | ||
platform: el-6-x86_64 | ||
box: onyxpoint/oel-6-x86_64 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
epel: | ||
mirrorlist: 'https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearch' | ||
gpgkeys: | ||
- https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-$releasever | ||
oel7: | ||
roles: | ||
- client | ||
platform: el-7-x86_64 | ||
box: onyxpoint/oel-7-x86_64 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
epel: | ||
mirrorlist: 'https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=$basearch' | ||
gpgkeys: | ||
- https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-$releasever | ||
|
||
oel8: | ||
roles: | ||
- client | ||
platform: el-8-x86_64 | ||
box: generic/oracle8 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
epel: | ||
mirrorlist: 'https://mirrors.fedoraproject.org/metalink?repo=epel-8&arch=$basearch' | ||
gpgkeys: | ||
- https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-$releasever | ||
CONFIG: | ||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
<% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%> | ||
puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %> | ||
<% end -%> | ||
|