Skip to content

Commit

Permalink
Install qpid-cpp-server-ssl on all RHEL6 based systems
Browse files Browse the repository at this point in the history
  • Loading branch information
xbezdick committed Jun 17, 2014
1 parent bd95e2a commit fb12ec0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@
if $ssl_database_password == undef {
fail('ssl_database_passowrd must be set')
}
if $::operatingsystem == 'Fedora' and is_integer($::operatingsystemrelease) and $::operatingsystemrelease <= 19 {
if (( $::operatingsystem == 'Fedora' and
is_integer($::operatingsystemrelease) and
$::operatingsystemrelease <= 19 ) or
( $::operatingsystem in ['RedHat', 'Centos', 'Scientific'] and
$::operatingsystemrelease < 7 )) {
package { $ssl_package_name:
ensure => $ssl_package_ensure,
before => Nssdb::Create['qpidd'],
Expand Down

0 comments on commit fb12ec0

Please sign in to comment.