Skip to content

Commit

Permalink
Specify qpid SSL key to qpid commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ehelms committed Mar 29, 2017
1 parent 8faa722 commit 27898a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions manifests/qpid.pp
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@
command => "del queue ${candlepin_event_queue} --force",
onlyif => "list binding | grep ${candlepin_event_queue} | grep '*.*'",
ssl_cert => $client_cert,
ssl_key => $client_key,
} ->
qpid::config_cmd { 'create katello entitlements queue':
command => "add queue ${candlepin_event_queue} --durable",
unless => "queues ${candlepin_event_queue}",
ssl_cert => $client_cert,
ssl_key => $client_key,
} ->
qpid::config::bind { ['entitlement.created', 'entitlement.deleted', 'pool.created', 'pool.deleted', 'compliance.created']:
queue => $candlepin_event_queue,
exchange => $candlepin_qpid_exchange,
ssl_cert => $client_cert,
ssl_key => $client_key,
}
}

0 comments on commit 27898a0

Please # to comment.