Added commas to the ends of the last parameters in the list.

This commit is contained in:
Nick Chappell 2014-07-06 17:17:08 -07:00
parent 6cdb4bb580
commit f0014ca6c7

View file

@ -58,7 +58,7 @@ Once the database is set up, use the `icinga2::server` class with the database c
db_port => '5432'
db_name => 'icinga2_data'
db_user => 'icinga2'
db_password => 'password'
db_password => 'password',
}
</pre>
@ -74,7 +74,7 @@ When the `server_db_type` parameter is set, the right IDO database connection pa
db_port => '5432'
db_name => 'icinga2_data'
db_user => 'icinga2'
db_password => hiera('icinga_db_password_key_here')
db_password => hiera('icinga_db_password_key_here'),
}
</pre>