port 6081 should be allowed via snapshot
[mirror/dsa-puppet.git] / modules / roles / manifests / archvsync_base.pp
1 class roles::archvsync_base {
2         file { '/srv/mirrors':
3                 ensure => directory,
4                 owner  => root,
5                 group  => 1176, # archvsync
6                 mode   => '0775',
7                 # links  => follow,
8         }
9
10         file { '/srv/mirrors/.nobackup':
11                 ensure  => present,
12                 content => '',
13         }
14
15         file { '/etc/ssh/userkeys/archvsync':
16                 ensure => 'link',
17                 target => '/home/archvsync/.ssh/authorized_keys',
18         }
19 }