aboutsummaryrefslogtreecommitdiffstats
path: root/modules/gitweb/manifests/init.pp
blob: d367bc512c05e2b2512633c89fe53f282f32f6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class gitweb {
    package { 'gitweb': }
    # TODO some rpm may be needed ( like perl-FCGI )
    # git >= 17.2 is needed for fastcgi support

    # TODO fix git rpm to show the css, the js, and others missing file

    file { '/etc/gitweb.conf':
        content => template('gitweb/gitweb.conf'),
        notify  => Service['apache'],
        require => Package['gitweb'],
    }

    apache::webapp_other { 'gitweb':
        webapp_file => 'gitweb/webapp.conf',
    }

    local_script { 'gitweb.wrapper.sh':
        content => template('gitweb/wrapper.sh'),
        notify  => Service['apache'],
    }

    apache::vhost::base { "gitweb.$::domain":
        content => template('gitweb/vhost.conf')
    }
}