summaryrefslogtreecommitdiff
path: root/manifests/web/repo/lighttpd.pp
blob: adc90e724e370de67c11520c849474951d32127c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
define git::web::repo::lighttpd(
    $gitweb_url,
    $gitweb_config
){
    include git::web::lighttpd
    file{"/etc/lighttpd/gitweb.d/${name}.conf":
        content => template("git/web/lighttpd"),
        notify => Service['lighttpd'],
        owner => root, group => 0, mode => 0644;
    }
    line{"add_include_of_gitwebrepo_${name}":
        line => "include \"gitweb.d/${name}.conf\"",
        file => "/etc/lighttpd/lighttpd-gitweb.conf",
        require => File['/etc/lighttpd/lighttpd-gitweb.conf'],
        notify => Service['lighttpd'],
    }
}