aboutsummaryrefslogtreecommitdiffstats
path: root/modules/viewvc/manifests/init.pp
blob: 49d8cb03fe51aa4a2587bac06c380685c19758af (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
38
39
40
41
42
43
44
45
46
47
class viewvc {
    package {['viewvc',
              'python-svn',
              'python-flup']: }

    # http_expiration_time = 600
    # svn_roots = admin: svn://svn.mageia.org/svn/adm/

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

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

    mga-common::local_script { 'kill_viewvc':
        content => template('viewvc/kill_viewvc.sh'),
    }

    cron { 'kill_viewvc':
        command     => '/usr/local/bin/kill_viewvc',
        hour        => '*',
        minute      => '*/5',
        user        => 'apache',
        environment => 'MAILTO=root',
    }

    $robotsfile = '/var/www/viewvc/robots.txt'
    file { $robotsfile:
        ensure => present,
        mode   => 0644,
        owner  => root,
        group  => root,
        source => 'puppet:///modules/viewvc/robots.txt',
    }

    apache::vhost::base { "svnweb.$::domain":
        aliases => {'/viewvc' => '/var/www/viewvc/',
                    '/robots.txt' => $robotsfile,
                    '/'       => '/usr/share/viewvc/bin/wsgi/viewvc.fcgi/'},
        content => template('viewvc/vhost.conf')
    }
}