install popcon
[mirror/dsa-puppet.git] / modules / popcon / manifests / init.pp
1 class popcon {
2         $popcon_host_id = hkdf('/etc/puppet/secret', "popcon_host_id-${::fqdn}")
3
4         package { 'popularity-contest':
5                 ensure => installed,
6         }
7
8         file { '/etc/popularity-contest.conf':
9                 content => template('popcon/popularity-contest.conf.erb')
10         }
11 }