29416e82290a039908af27b36d5ac19487b844bb
[mirror/dsa-puppet.git] / modules / roles / manifests / init.pp
1 # = Class: roles
2 #
3 class roles {
4   if has_role('security_mirror') {
5     include roles::security_mirror
6   }
7
8   if has_role('postgres_backup_server') {
9     include postgres::backup_server
10   }
11
12   if has_role('postgresql_server') {
13     include postgres::backup_source
14   }
15
16   if $::keyring_debian_org_mirror {
17     include roles::keyring_debian_org_mirror
18   }
19 }