aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/hugs.pp
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/websites/manifests/hugs.pp')
-rw-r--r--deployment/websites/manifests/hugs.pp16
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: }
+ }
+}