aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/var/binrepo.pp
blob: 1431ed25048010587994ceea05a842ad0d29cf55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $uploadmail_from:
#   from who will be sent the binrepo upload email notifications
# $uploadmail_to:
#   where binrepo email notifications are sent
class buildsystem::var::binrepo(
    $hostname = "binrepo.${::domain}",
    $login = 'binrepo',
    $homedir = '/var/lib/binrepo',
    $uploadmail_from,
    $uploadmail_to
) {
    $repodir = "${homedir}/data"
    $uploadinfosdir = "${homedir}/infos"
    $uploadbinpath = '/usr/local/bin/upload-bin'
}