We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd95e2a + 6398eb8 commit 18f541bCopy full SHA for 18f541b
1 file changed
manifests/server.pp
@@ -10,7 +10,7 @@
10
$service_enable = true,
11
$manage_service = true,
12
$port = '5672',
13
- $max_connections = '65535',
+ $max_connections = '65530',
14
$worker_threads = '17',
15
$connection_backlog = '10',
16
$auth = 'no',
@@ -70,7 +70,11 @@
70
if $ssl_database_password == undef {
71
fail('ssl_database_passowrd must be set')
72
}
73
- if $::operatingsystem == 'Fedora' and is_integer($::operatingsystemrelease) and $::operatingsystemrelease <= 19 {
+ if (( $::operatingsystem == 'Fedora' and
74
+ is_integer($::operatingsystemrelease) and
75
+ $::operatingsystemrelease <= 19 ) or
76
+ ( $::operatingsystem in ['RedHat', 'Centos', 'Scientific'] and
77
+ $::operatingsystemrelease < 7 )) {
78
package { $ssl_package_name:
79
ensure => $ssl_package_ensure,
80
before => Nssdb::Create['qpidd'],
0 commit comments