Puppet Class: storm::db::params
Summary
StoRM DB params classOverview
3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/db/params.pp', line 3
class storm::db::params (
) inherits storm::params {
$fqdn_hostname = lookup('storm::db::fqdn_hostname', String, undef, 'backend.example.org')
$root_password = lookup('storm::db::root_password', String, undef, 'storm')
$storm_username = lookup('storm::db::storm_username', String, undef, 'storm')
$storm_password = lookup('storm::db::storm_password', String, undef, 'bluemoon')
}
|