diff options
Diffstat (limited to 'deployment/websites/manifests/hugs.pp')
-rw-r--r-- | deployment/websites/manifests/hugs.pp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/deployment/websites/manifests/hugs.pp b/deployment/websites/manifests/hugs.pp new file mode 100644 index 00000000..628d2b15 --- /dev/null +++ b/deployment/websites/manifests/hugs.pp @@ -0,0 +1,16 @@ +class websites { + class hugs inherits base { + $vhostdir = "$webdatadir/hugs.$domain" + $svn_location = "svn://svn.$domain/svn/web/hugs/public/" + + apache::vhost_base { "hugs.$domain": + location => $vhostdir, + } + + subversion::snapshot { "$vhostdir": + source => $svn_location + } + + package { php-exif: } + } +} |