more README puppet DSL fixing

Signed-off-by: Nick Chappell <nick@intronic.org>

Merged from: https://github.com/Icinga/puppet-icinga2/pull/41

refs#7674: https://dev.icinga.org/issues/7674
This commit is contained in:
Devon Mizelle 2014-11-12 14:36:48 -05:00 committed by Nick Chappell
parent fb9e17f7b8
commit bf5440fb3e

View file

@ -118,10 +118,10 @@ When the `server_db_type` parameter is set, the right IDO database connection pa
#Install Icinga 2:
class { 'icinga2::server':
server_db_type => 'pgsql',
db_host => 'localhost'
db_port => '5432'
db_name => 'icinga2_data'
db_user => 'icinga2'
db_host => 'localhost',
db_port => '5432',
db_name => 'icinga2_data',
db_user => 'icinga2',
db_password => hiera('icinga_db_password_key_here'),
}
</pre>