Skip to content

Commit

Permalink
Fixes Fedora qpid ssl package
Browse files Browse the repository at this point in the history
    This patch fixes the qpid-cpp-server-ssl package
    now included in qpid-cpp-server in Fedora 20
  • Loading branch information
imcsk8 committed Apr 16, 2014
1 parent 953028b commit c906f0e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@
if $ssl_database_password == undef {
fail('ssl_database_passowrd must be set')
}
package { $ssl_package_name:
ensure => $ssl_package_ensure,
before => Nssdb::Create['qpidd'],
if $::operatingsystem == 'Fedora' and is_integer($::operatingsystemrelease) and $::operatingsystemrelease <= 19 {
package { $ssl_package_name:
ensure => $ssl_package_ensure,
before => Nssdb::Create['qpidd'],
}
}
nssdb::create {"qpidd":
owner_id => 'qpidd',
Expand Down

0 comments on commit c906f0e

Please sign in to comment.