aboutsummaryrefslogtreecommitdiffstats
path: root/modules/viewvc/manifests/init.pp
blob: 99acec908183caa7432457ec8b4986861a9ccf56 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
class viewvc {
    include apache::mod::fcgid
    include viewvc::var
    package {['viewvc',
              'python2-svn',
              'python-flup']: }

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

    file { '/etc/viewvc/viewvc.conf':
        content => template($viewvc::var::tmpl_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',
    }

    $viewvc_docroot = '/usr/share/viewvc/templates/docroot'
    $robotsfile = "$viewvc_docroot/robots.txt"
    file { $robotsfile:
        ensure => present,
        mode   => '0644',
        owner  => root,
        group  => root,
        source => 'puppet:///modules/viewvc/robots.txt',
    }

    $vhost_aliases = {
        '/viewvc' => $viewvc_docroot,
        '/robots.txt' => $robotsfile,
    }

    $script_aliases = {
        '/' => '/usr/share/viewvc/bin/wsgi/viewvc.fcgi/',
    }

    $process = 4

    apache::vhost::base { $viewvc::var::hostname:
        aliases => $vhost_aliases,
        content => template('apache/vhost_fcgid.conf'),
    }

    apache::vhost::base { "ssl_${viewvc::var::hostname}":
        vhost   => $viewvc::var::hostname,
        use_ssl => true,
        aliases => $vhost_aliases,
        content => template('apache/vhost_fcgid.conf'),
    }
}