blob: 0c3562a115ea6e80a66576f5a0af82c88c459977 (
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"
}
|