aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/var/maintdb.pp
blob: 537489af05c9a90afd7a47684afb4d0705a2f929 (plain)
1
2
3
4
5
6
7
8
9
10
11
class buildsystem::var::maintdb(
    $hostname = "maintdb.$::domain",
    $login = 'maintdb',
    $homedir = '/var/lib/maintdb'
) {
    include buildsystem::var::webstatus
    $dbdir = "$homedir/db"
    $binpath = '/usr/local/sbin/maintdb'
    $dump = "${buildsystem::var::webstatus::location}/data/maintdb.txt"
    $unmaintained = "${buildsystem::var::webstatus::location}/data/unmaintained.txt"
}