Move cert/key paths into the cert class
The snakeoil fallback defaults need to be set in the cert class, not as defaults in the module init. Change-Id: Id1f5dd081fa085775b96c0e374055aded203148a Depends-On: Ifc92d78f081fc69d804c29033e96e1c94462213b
This commit is contained in:
parent
9fe15d9067
commit
edfb6b3bef
@ -21,10 +21,10 @@
|
||||
#
|
||||
class storyboard::cert (
|
||||
$ssl_cert_content = undef,
|
||||
$ssl_cert = '/etc/ssl/certs/storyboard.pem',
|
||||
$ssl_cert = '/etc/ssl/certs/ssl-cert-snakeoil.pem',
|
||||
|
||||
$ssl_key_content = undef,
|
||||
$ssl_key = '/etc/ssl/private/storyboard.key',
|
||||
$ssl_key = '/etc/ssl/private/ssl-cert-snakeoil.key',
|
||||
|
||||
$ssl_ca_content = undef,
|
||||
$ssl_ca = undef, # '/etc/ssl/certs/ca.pem'
|
||||
|
@ -33,9 +33,9 @@ class storyboard (
|
||||
$openid_url = 'https://login.launchpad.net/+openid',
|
||||
|
||||
$ssl_cert_content = undef,
|
||||
$ssl_cert = '/etc/ssl/certs/ssl-cert-snakeoil.pem',
|
||||
$ssl_cert = undef,
|
||||
$ssl_key_content = undef,
|
||||
$ssl_key = '/etc/ssl/private/ssl-cert-snakeoil.key',
|
||||
$ssl_key = undef,
|
||||
$ssl_ca_content = undef,
|
||||
$ssl_ca = undef,
|
||||
) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user