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:
parent
a5ae5b49ef
commit
fb9e17f7b8
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue