blob: 21c033c3976a11727a4bf43d7b863de1f1f1ed4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class websites::archives {
include websites::base
$vhost = "archives.$::domain"
$vhostdir = "$websites::base::webdatadir/$vhost"
$svn_location = "svn://svn.$::domain/svn/web/archives/"
apache::vhost::base { $vhost:
location => $vhostdir,
}
apache::vhost::base { "ssl_$vhost":
vhost => $vhost,
use_ssl => true,
location => $vhostdir,
}
subversion::snapshot { $vhostdir:
source => $svn_location,
}
}
|