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-7473) Add EL8 support (simp#100)
- Via updated acceptance tests, verified that the existing configuration worked on EL8 and that EL7 interoperated with EL8. - Did not address any new rsyslog features available in EL8. - False compliance failures reported in the compliance acceptance test will be addressed by a separate ticket. SIMP-7272 #close SIMP-7273 #close SIMP-7437 #close SIMP-7384 #close SIMP-7202 #comment update simp-rsyslog
- Loading branch information
1 parent
a09ffab
commit 0b09e50
Showing
21 changed files
with
706 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* Fri Jan 10 2020 Liz Nemsick <[email protected]> - 7.6.0-0 | ||
- Added EL8 support | ||
|
||
* Wed Oct 16 2019 Adam Yohrling <[email protected]> - 7.5.1-0 | ||
- Added logrotate::rule options to rsyslog::conf::logrotate class | ||
|
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,61 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
client: | ||
roles: | ||
- default | ||
- master | ||
- client | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
chef-current: | ||
baseurl: 'https://packages.chef.io/repos/yum/current/el/7/$basearch' | ||
gpgkeys: | ||
- https://packages.chef.io/chef.asc | ||
server-1: | ||
roles: | ||
- server | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
chef-current: | ||
baseurl: 'https://packages.chef.io/repos/yum/current/el/7/$basearch' | ||
gpgkeys: | ||
- https://packages.chef.io/chef.asc | ||
server-2: | ||
roles: | ||
- server | ||
platform: el-8-x86_64 | ||
box: centos/8 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
chef-current: | ||
baseurl: 'https://packages.chef.io/repos/yum/current/el/8/$basearch' | ||
gpgkeys: | ||
- https://packages.chef.io/chef.asc | ||
server-3: | ||
roles: | ||
- failover_server | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: <%= hypervisor %> | ||
yum_repos: | ||
chef-current: | ||
baseurl: 'https://packages.chef.io/repos/yum/current/el/7/$basearch' | ||
gpgkeys: | ||
- https://packages.chef.io/chef.asc | ||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
vagrant_memsize: 256 | ||
<% 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
Oops, something went wrong.