6 lines
290 B
Puppet
6 lines
290 B
Puppet
class soc::satosa(
|
|
String $hostname = $servername
|
|
) {
|
|
file { '/etc/satosa/https.key': ensure => link, target => "/etc/dehydrated/certs/${dehydrated_name}.key" }
|
|
file { '/etc/satosa/https.crt': ensure => link, target => "/etc/dehydrated/certs/${dehydrated_name}/fullchain.pem" }
|
|
}
|