|
58 | 58 | # EHCache configuration for clustered mode
|
59 | 59 | # @param ehcache_object_port
|
60 | 60 | # EHCache configuration for clustered mode
|
| 61 | +# @param use_jndi_ds |
| 62 | +# If true, the database will be configured as JNDI datasource in server.xml and then referenced in dbconfig.xml |
| 63 | +# @param jndi_ds_name |
| 64 | +# Configures the JNDI datasource name |
61 | 65 | # @param db
|
62 | 66 | # The kind of database to use.
|
63 | 67 | # @param dbname
|
|
263 | 267 | # undocumented SSO parameter
|
264 | 268 | # @param session_lastvalidation
|
265 | 269 | # undocumented SSO parameter
|
| 270 | +# @param plugins |
| 271 | +# an array of hashes defining custom plugins to install |
| 272 | +# a single plugin configuration will has the following form |
| 273 | +# installation_name: this name wil be used to install the plugin within jira |
| 274 | +# source: url of plugin to be fetched |
| 275 | +# username: the username for authentification, if necessary |
| 276 | +# password: the password for authentification, if necessary |
| 277 | +# checksum: the checksum of the plugin, to determine the need for an upgrade |
| 278 | +# checksumtype: the type of checksum used (none|md5|sha1|sha2|sha256|sha384|sha512). (default: none) |
266 | 279 | # @param jvm_permgen
|
267 | 280 | # Deprecated. Exists to notify users that they're trying to configure a parameter that has no effect
|
268 | 281 | # @param poolsize
|
|
296 | 309 | Optional[Stdlib::Port] $ehcache_listener_port = undef,
|
297 | 310 | Optional[Stdlib::Port] $ehcache_object_port = undef,
|
298 | 311 | # Database Settings
|
| 312 | + Boolean $use_jndi_ds = false, |
| 313 | + String[1] $jndi_ds_name = 'JiraDS', |
299 | 314 | Enum['postgresql','mysql','sqlserver','oracle','h2'] $db = 'postgresql',
|
300 | 315 | String $dbuser = 'jiraadm',
|
301 | 316 | String $dbpassword = 'mypassword',
|
|
352 | 367 | $service_notify = undef,
|
353 | 368 | $service_subscribe = undef,
|
354 | 369 | # Command to stop jira in preparation to upgrade. This is configurable
|
355 |
| - # incase the jira service is managed outside of puppet. eg: using the |
| 370 | + # in case the jira service is managed outside of puppet. eg: using the |
356 | 371 | # puppetlabs-corosync module: 'crm resource stop jira && sleep 15'
|
357 |
| - # Note: the command should return either 0 or 5 |
358 |
| - # when the service doesn't exist |
| 372 | + # Note: the command should return either 0 or 5 when the service doesn't exist |
359 | 373 | String $stop_jira = 'systemctl stop jira.service && sleep 15',
|
360 | 374 | # Whether to manage the 'check-java.sh' script, and where to retrieve
|
361 | 375 | # the script from.
|
|
411 | 425 | Optional[String] $jvm_permgen = undef,
|
412 | 426 | Optional[Integer[0]] $poolsize = undef,
|
413 | 427 | Optional[Boolean] $enable_connection_pooling = undef,
|
| 428 | + # plugin installation |
| 429 | + Array[Hash] $plugins = [], |
414 | 430 | ) {
|
415 |
| - # To maintain compatibility with previous behaviour, we check for not-servicedesk instead of specifying the |
| 431 | + # To maintain compatibility with previous behaviour, we check for not-servicedesk instead of specifying the |
416 | 432 | if $product != 'servicedesk' and versioncmp($jira::version, '8.0.0') < 0 {
|
417 | 433 | fail('JIRA versions older than 8.0.0 are no longer supported. Please use an older version of this module to upgrade first.')
|
418 | 434 | }
|
|
476 | 492 | if ($enable_sso) {
|
477 | 493 | class { 'jira::sso': }
|
478 | 494 | }
|
| 495 | + |
| 496 | + # install any given library or remove them |
| 497 | + $plugins.each |Hash $plugin_data| { |
| 498 | + $target = "${jira::webappdir}/atlassian-jira/WEB-INF/lib/${$plugin_data['installation_name']}" |
| 499 | + if $plugin_data['ensure'] == 'absent' { |
| 500 | + archive { |
| 501 | + $target: |
| 502 | + ensure => 'absent', |
| 503 | + } |
| 504 | + } else { |
| 505 | + $_target_defaults = { |
| 506 | + ensure => 'present', |
| 507 | + source => $plugin_data['source'], |
| 508 | + checksum => $plugin_data['checksum'], |
| 509 | + checksum_type => $plugin_data['checksum_type'], |
| 510 | + } |
| 511 | + $_username = !empty($plugin_data['username']) ? { |
| 512 | + default => {}, |
| 513 | + true => { username => $plugin_data['username'] } |
| 514 | + } |
| 515 | + $_password = !empty($plugin_data['password']) ? { |
| 516 | + default => {}, |
| 517 | + true => { password => $plugin_data['password'] } |
| 518 | + } |
| 519 | + $_plugin_archive = { |
| 520 | + $target => $_target_defaults + $_username + $_password |
| 521 | + } |
| 522 | + create_resources(archive, $_plugin_archive) |
| 523 | + } |
| 524 | + } |
479 | 525 | }
|
0 commit comments