aboutsummaryrefslogtreecommitdiffstats
path: root/modules/gitweb/manifests/init.pp
blob: 03fd901ce468eeed105d2f03508c157a99d4d03b (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
27
28
29
30
31
32
33
34
35
36
37
class gitweb {
    package { 'gitweb':
        ensure => installed,
    }
    # 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 { 'gitweb.conf':
        ensure => present,
        path => '/etc/gitweb.conf',
        content => template('gitweb/gitweb.conf'),
        notify => Service['apache'],
        require => Package['gitweb']
    }

    file { 'webapps.d/gitweb.conf':
        ensure => present,
        path => '/etc/httpd/conf/webapps.d/gitweb.conf',
        content => template('gitweb/webapp.conf'),
        notify => Service['apache'],
        require => Package['apache'],
    }
   
    file { 'gitweb.wrapper.sh':
        ensure => present,
        mode => 755,
        path => '/usr/local/bin/gitweb.wrapper.sh',
        content => template('gitweb/wrapper.sh'),
        notify => Service['apache'],
    }
     
    apache::vhost_base { "gitweb.$domain":
        content => template("gitweb/vhost.conf")
    }
}