-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump spec attrs and update CHANGELOG (#36)
- Loading branch information
1 parent
9ad1909
commit c9f4cfb
Showing
7 changed files
with
56 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
* Sat Jul 30 2022 Joshua Hoblitt <[email protected]> - 0.2.2 | ||
- Add support for Alma and Rocky Linux | ||
|
||
* Sun Feb 13 2022 Trevor Vaughan <[email protected]> - 0.2.1 | ||
- Add support for Amazon Linux 2 | ||
|
||
|
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,23 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
alma8: | ||
roles: | ||
- default | ||
platform: el-8-x86_64 | ||
box: almalinux/8 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
multi_node: false | ||
vagrant_cpus: 2 | ||
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%> | ||
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %> | ||
<% 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
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,24 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
rocky8: | ||
roles: | ||
- default | ||
platform: el-8-x86_64 | ||
box: rockylinux/8 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
multi_node: false | ||
synced_folder: disabled | ||
vagrant_cpus: 2 | ||
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%> | ||
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %> | ||
<% end -%> |