Puppet Class: sslcert::dhparam
- Defined in:
- modules/sslcert/manifests/dhparam.pp
Overview
13 14 15 16 17 18 19 20 21 |
# File 'modules/sslcert/manifests/dhparam.pp', line 13
class sslcert::dhparam {
file { '/etc/ssl/dhparam.pem':
ensure => present,
owner => 'root',
group => 'root',
mode => '0444',
source => 'puppet:///modules/sslcert/dhparam.pem',
}
}
|