forked from SUNET/soc-ops
Fixing cert locations, this might bomb.
This commit is contained in:
parent
5b2bef346d
commit
959acc2337
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
class soc::satosa(
|
class soc::satosa(
|
||||||
String $cert_name = $::facts['fqdn'],
|
String $cert_name = $::facts['fqdn'],
|
||||||
) {
|
) {
|
||||||
file { '/etc/satosa/https.key': ensure => link, target => "/etc/dehydrated/certs/${cert_name}.key" }
|
file { '/etc/satosa/https.key': ensure => link, target => "/etc/letsencrypt/live/${cert_name}/privkey.pem" }
|
||||||
file { '/etc/satosa/https.crt': ensure => link, target => "/etc/dehydrated/certs/${cert_name}/fullchain.pem" }
|
file { '/etc/satosa/https.crt': ensure => link, target => "/etc/letsencrypt/live/${cert_name}/fullchain.pem" }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue