/[adm]/puppet/deployment/websites/manifests/doc.pp
ViewVC logotype

Annotation of /puppet/deployment/websites/manifests/doc.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2749 - (hide annotations) (download)
Tue May 15 15:30:51 2012 UTC (11 years, 11 months ago) by boklm
File size: 470 byte(s)
add websites::doc class
1 boklm 2749 class websites::doc {
2     include websites::base
3     $vhost = "doc.$::domain"
4     $vhostdir = "$websites::base::webdatadir/$vhost"
5     $svn_location = "svn://svn.$::domain/svn/web/doc/"
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