Puppet Class: lcgdm::dpm::params
- Inherits:
- lcgdm::base::params
- Defined in:
- manifests/dpm/params.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/dpm/params.pp', line 1
class lcgdm::dpm::params () inherits lcgdm::base::params {
$host = $::fqdn
$nshost = $::fqdn
$dbflavor = 'mysql'
$dbhost = 'localhost'
$dpm_db = 'dpm_db'
$dbmanage = true
$active = 'yes'
$ulimitn = 4096
$coredump = 'no'
$numfthreads = 60
$numsthreads = 20
$syncget = 'yes'
$configfile = '/usr/etc/DPMCONFIG'
$reqcleantimeout = '3m'
}
|