Project

General

Profile

Download (583 Bytes) Statistics
| Branch: | Tag: | Revision:
# == Define: qpid::router::ssl_profile
#
# Configures an SSL profile for Qpid Dispatch Router
#
# == Parameters
#
# $ca:: Location of CA pem file
#
# $cert:: Location of certificate pem file
#
# $key:: Location of private key pem file
#
# $name:: Name of SSL profile
#
# $password:: Password, if required
#
define qpid::router::ssl_profile(
$ca,
$cert,
$key,
$password = '',
) {

validate_absolute_path($ca, $cert, $key)

concat_fragment {"qdrouter+ssl_${title}.conf":
content => template('qpid/router/ssl_profile.conf.erb'),
}

}
(7-7/7)