keyring: explicitly include apache2
[mirror/dsa-puppet.git] / modules / roles / manifests / archvsync_base.pp
1 # this is usually pulled in by *-mirror or syncproxy roles
2 class roles::archvsync_base {
3         file { '/srv/mirrors':
4                 ensure => directory,
5                 owner  => root,
6                 group  => 1176, # archvsync
7                 mode   => '0775',
8                 # links  => follow,
9         }
10
11         file { '/srv/mirrors/.nobackup':
12                 ensure  => present,
13                 content => '',
14         }
15
16         file { '/etc/ssh/userkeys/archvsync':
17                 ensure => 'link',
18                 target => '/home/archvsync/.ssh/authorized_keys',
19         }
20 }