Parent Directory | Revision Log
add websites::nav class
1 | boklm | 2750 | class websites::nav { |
2 | include websites::base | ||
3 | $vhost = "nav.$::domain" | ||
4 | $vhostdir = "$websites::base::webdatadir/$vhost" | ||
5 | $svn_location = "svn://svn.$::domain/svn/web/nav/" | ||
6 | |||
7 | apache::vhost::base { $vhost: | ||
8 | location => $vhostdir, | ||
9 | } | ||
10 | |||
11 | apache::vhost::base { "ssl_$vhost": | ||
12 | vhost => $vhost, | ||
13 | use_ssl => true, | ||
14 | location => $vhostdir, | ||
15 | } | ||
16 | |||
17 | subversion::snapshot { $vhostdir: | ||
18 | source => $svn_location, | ||
19 | } | ||
20 | } |
ViewVC Help | |
Powered by ViewVC 1.1.30 |