eximconf: more RBLs for the default set
[mirror/dsa-puppet.git] / modules / buildd / manifests / gnupg.pp
1 # GPG key generation
2 class buildd::gnupg {
3   file { '/home/buildd/.gnupg':
4     ensure  => directory,
5     mode    => '700',
6     group   => buildd,
7     owner   => buildd,
8   }
9   file { '/home/buildd/.gnupg/gpg.conf':
10     content  => "personal-digest-preferences SHA512\n",
11     group   => buildd,
12     owner   => buildd,
13   }
14 }