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..95246464 --- /dev/null +++ b/deployment/websites/manifests/hugs.pp @@ -0,0 +1,16 @@ +class websites::hugs { + include websites::base + + $vhostdir = "${websites::base::webdatadir}/hugs.${::domain}" + $git_location = "git://git.${::domain}/web/hugs" + + apache::vhost::base { "hugs.${::domain}": + location => $vhostdir, + } + + git::snapshot { $vhostdir: + source => $git_location + } + + package { 'php-exif': } +} |
