aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/hugs.pp
blob: 27a554a71326e5f15d9699abafc1878e0d83ddb4 (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}"
    $git_location = "git://git.${::domain}/web/hugs"

    apache::vhost::base { "hugs.${::domain}":
        location => $vhostdir,
    }

    git::snapshot { $vhostdir:
        source => $git_location
    }

    package { 'php-exif': }
}