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