forked from simp/pupmod-simp-aide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
51 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
* Sat Jan 22 2022 Trevor Vaughan <[email protected]> - 6.5.1 | ||
- Added support for Amazon Linux 2 | ||
|
||
* Mon Jun 14 2021 Chris Tessmer <[email protected]> - 6.5.0 | ||
- Removed support for Puppet 5 | ||
- Ensured support for Puppet 7 in requirements and stdlib | ||
|
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: | ||
amzn2: | ||
roles: | ||
- default | ||
platform: el-7-x86_64 | ||
box: gbailey/amzn2 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
synced_folder : disabled | ||
type: aio | ||
vagrant_memsize: 512 | ||
<% 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