Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"name": "puppet-rsyslog",
"version": "7.3.1-rc0",
Expand Down Expand Up @@ -34,7 +34,9 @@
},
{
"operatingsystem": "Debian",
"operatingsystemrelease": []
"operatingsystemrelease": [
"12"
]
}
],
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/rsyslog_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
cleanup_helper
end

it 'applies' do

Check failure on line 11 in spec/acceptance/rsyslog_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Debian 12

Rsyslog with defaults applies Failure/Error: apply_manifest(pp, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian12-64-openvox8.example.com' exited with 6 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_090945237.KajrXN.pp Last 10 lines of output were: Sep 24 09:08:58 debian12-64-openvox8.example.com systemd[1]: Failed to start rsyslog.service - System Logging Service. Sep 24 09:08:58 debian12-64-openvox8.example.com systemd[1]: rsyslog.service: Scheduled restart job, restart counter is at 5. Sep 24 09:08:58 debian12-64-openvox8.example.com systemd[1]: Stopped rsyslog.service - System Logging Service. Sep 24 09:08:58 debian12-64-openvox8.example.com systemd[1]: Starting rsyslog.service - System Logging Service... Sep 24 09:08:58 debian12-64-openvox8.example.com systemd[1]: rsyslog.service: Main process exited, code=exited, status=1/FAILURE Sep 24 09:08:58 debian12-64-openvox8.example.com systemd[1]: rsyslog.service: Failed with result 'exit-code'. �[mNotice: /Stage[main]/Rsyslog::Base/Service[rsyslog]: Triggered 'refresh' from 1 event Info: Class[Rsyslog::Base]: Unscheduling all events on Class[Rsyslog::Base] �[mNotice: Applied catalog in 2.39 seconds
pp = <<-MANIFEST
case $facts['os']['name'] {
'Ubuntu': {
'Ubuntu', 'Debian': {
$overrides = true
}
'RedHat', 'CentOS', 'Scientific', 'Fedora', 'OracleLinux': {
Expand Down Expand Up @@ -43,7 +43,7 @@
end

describe service('rsyslog') do
it { is_expected.to be_running }

Check failure on line 46 in spec/acceptance/rsyslog_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Debian 12

Rsyslog with defaults Service "rsyslog" is expected to be running Failure/Error: it { is_expected.to be_running } expected Service "rsyslog" to be running
it { is_expected.to be_enabled }
end
end
Expand Down
Loading