ignore changes to /etc/apache2/conf-available/puppet-ssl-key-pins.conf
[mirror/dsa-puppet.git] / modules / apache2 / manifests / pin.pp
1 define apache2::pin () {
2         $snippet = gen_hpkp_pin($name)
3
4         concat::fragment { "puppet-ssl-key-pins-header-${name}":
5                 target => '/etc/apache2/conf-available/puppet-ssl-key-pins.conf',
6                 content => $snippet,
7         }
8 }