aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/binrepo.pp
blob: 661ee10c41b4a1578b73591459231b0da0f9ef2f (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
class buildsystem::binrepo {
    include buildsystem::base
    include sudo
    $login = 'binrepo'
    $homedir = "/var/lib/$login"
    $repodir = "$homedir/data"

    $uploadinfosdir = "$homedir/infos"
    $uploadbinpath = '/usr/local/bin/upload-bin'
    $uploadmail_from = "root@$::domain"
    $uploadmail_to = "packages-commits@ml.$::domain"

    # used in templates
    $packagers_committers_group = $buildsystem::base::packagers_committers_group

    user { $login:
        comment => 'Binary files repository',
        home    => $homedir,
    }

    file { [$repodir, $uploadinfosdir]:
        ensure => directory,
        owner  => $login,
    }

    local_script {
        'upload-bin':
            content => template('buildsystem/binrepo/upload-bin');
        'wrapper.upload-bin':
            content => template('buildsystem/binrepo/wrapper.upload-bin');
    }

    sudo::sudoers_config { 'binrepo':
        content => template('buildsystem/binrepo/sudoers.binrepo')
    }

    apache::vhost::base { "binrepo.$::domain":
        location => $repodir,
        content  => template('buildsystem/binrepo/vhost_binrepo.conf'),
    }
}