Skip to content

Commit

Permalink
Use a specific version of syslog-ng on Debian
Browse files Browse the repository at this point in the history
Latest version has a packaging issue that trigger build failures.
  • Loading branch information
smortex committed Aug 10, 2023
1 parent 425c3c0 commit a8153d6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions spec/acceptance/class_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,20 @@ class { 'epel':
Class['epel'] -> Class['syslog_ng']
}
if fact('os.family') == 'Debian' {
# Versions 4.3.0 and 4.3.1 (current) are broken on Debian
$version = '3.38.1-1'
} else {
$version = undef
}
class { 'syslog_ng':
manage_repo => true,
manage_repo => true,
package_ensure => $version,
}
syslog_ng::config { 'version':
content => '@version: 3.30',
content => '@version: 3.38',
order => '02',
}
Expand Down

0 comments on commit a8153d6

Please sign in to comment.