Puppet Class: storm::db::params

Inherits:
storm::params
Inherited by:
storm::db
Defined in:
manifests/db/params.pp

Summary

StoRM DB params class

Overview



3
4
5
6
7
8
9
10
11
12
13
# 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')
  $max_connections = lookup('storm::db::max_connections', Integer, undef, 1024)

}