forked from simp/pupmod-simp-rsyslog
-
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.
(SIMP-4009) Add support for OEL and Puppet 5 (simp#66)
* (SIMP-4009) Add support for OEL and Puppet 5
- Loading branch information
1 parent
571dcc7
commit 96799b3
Showing
11 changed files
with
413 additions
and
230 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,7 @@ | ||
* Fri Jul 13 2018 Trevor Vaughan <[email protected]> - 7.2.0-0 | ||
- Add support for Puppet5 and OEL | ||
- Update acceptance tests to use environment variables | ||
|
||
* Thu Jun 28 2018 Nick Miller <[email protected]> - 7.1.3-0 | ||
- Update docs | ||
- Update ci assets | ||
|
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,41 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
client: | ||
roles: | ||
- default | ||
- master | ||
- client | ||
platform: el-7-x86_64 | ||
box: elastic/oel-7-x86_64 | ||
hypervisor: <%= hypervisor %> | ||
server-1: | ||
roles: | ||
- server | ||
platform: el-7-x86_64 | ||
box: elastic/oel-7-x86_64 | ||
hypervisor: <%= hypervisor %> | ||
server-2: | ||
roles: | ||
- server | ||
platform: el-6-x86_64 | ||
box: elastic/oel-6-x86_64 | ||
hypervisor: <%= hypervisor %> | ||
server-3: | ||
roles: | ||
- failover_server | ||
platform: el-7-x86_64 | ||
box: elastic/oel-7-x86_64 | ||
hypervisor: <%= hypervisor %> | ||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
vagrant_memsize: 256 | ||
<% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%> | ||
puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %> | ||
<% 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