Skip to content

Commit

Permalink
Merge pull request #73 from NETWAYS/bug/wrong-params-in-server
Browse files Browse the repository at this point in the history
fix wrong params in server
  • Loading branch information
lbetz authored May 12, 2023
2 parents 8f9b291 + 14c3160 commit 2437f39
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions modules/install/manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
#
# $ticket_salt:: Set an alternate ticket salt to icinga::ticket_salt from Hiera.
#
# $web_api_pass:: Icinga API web user password.
# $web_api_password:: Icinga API web user password.
#
# $director_api_pass:: Icinga API director user password.
# $director_api_password:: Icinga API director user password.
#
# $logging_type:: Switch the log target.
#
# $logging_level:: Set the log level.
#
class install::server (
Boolean $ca = true,
String $zone = 'main',
Array[String] $global_zones = ['linux-commands', 'windows-commands', 'global-templates', 'director-global'],
String $ticket_salt = $install::params::ticket_salt,
String $web_api_pass = $install::params::web_api_password,
String $director_api_pass = $install::params::director_api_password,
Enum['file', 'syslog'] $logging_type = 'syslog',
Boolean $ca = true,
String $zone = 'main',
Array[String] $global_zones = ['linux-commands', 'windows-commands', 'global-templates', 'director-global'],
String $ticket_salt = $install::params::ticket_salt,
String $web_api_password = $install::params::web_api_password,
String $director_api_password = $install::params::director_api_password,
Enum['file', 'syslog'] $logging_type = 'syslog',
Enum[
'debug', 'information',
'notice', 'warning', 'critical'
Expand Down

0 comments on commit 2437f39

Please sign in to comment.