aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/hugs.pp
blob: 49fe6ac77f28e05cf3d62873f3cddf4b89812fae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class websites::hugs {
    include websites::base

    $vhostdir = "$websites::base::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': }
}