aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/var/binrepo.pp
blob: 0b9c0f355e6ff967008b4725b393fb5203f56349 (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'
}