projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Set vhost_listen variables required by apache-www.debian.org template
[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
}