-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-7822) Add EPEL installer (#138)
* Added: * A `enable_epel_on` function that follows the instructions on the EPEL website to properly enable EPEL on hosts. May be disabled using `BEAKER_enable_epel=no`. * An `enable_epel_on` function that follows the instructions on the EPEL website to properly enable EPEL on hosts. May be disabled using `BEAKER_enable_epel=no`. * An Ubuntu nodeset to make sure our default settings don't destroy other Linux systems. * Ensure that crypto policies get updated across the board so that the order of FIPS enforcement is irrelevant. * Fixed: * Workaround URI.open change in Ruby 3 SIMP-7822 #comment added EPEL installer for consistency.
- Loading branch information
1 parent
0855d22
commit cde56f6
Showing
6 changed files
with
132 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Simp; end | ||
|
||
module Simp::BeakerHelpers | ||
VERSION = '1.19.4' | ||
VERSION = '1.20.0' | ||
end |
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,20 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
focal: | ||
platform: ubuntu-20.04-x86_64 | ||
box: ubuntu/focal64 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
vagrant_memsize: 256 | ||
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%> | ||
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %> | ||
<% end -%> |