projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c3eeddd2b630d92b1951813b9fa4f02d888ff6fb
[mirror/dsa-puppet.git]
/
modules
/
roles
/
manifests
/
snapshot_web.pp
1
class roles::snapshot_web {
2
include apache2
3
include apache2::rewrite
4
5
ensure_packages ( [
6
"libapache2-mod-wsgi",
7
], {
8
ensure => 'installed',
9
})
10
11
apache2::site { '020-snapshot.debian.org':
12
site => 'snapshot.debian.org',
13
content => template('roles/snapshot/snapshot.debian.org.conf.erb')
14
}
15
}