fixing some missing commas in the Server usage example puppet DSL

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:35:13 -05:00 committed by Nick Chappell
parent a5ae5b49ef
commit fb9e17f7b8

View file

@ -102,10 +102,10 @@ Once the database is set up, use the `icinga2::server` class with the database c
#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 => 'password',
}
</pre>