Showing with 13 additions and 5 deletions.
  1. +8 −0 CHANGELOG.md
  2. +2 −2 REFERENCE.md
  3. +1 −1 manifests/install.pp
  4. +1 −1 manifests/instance.pp
  5. +1 −1 metadata.json
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v6.4.1](https://github.com/puppetlabs/puppetlabs-tomcat/tree/v6.4.1) (2023-03-23)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-tomcat/compare/v6.4.0...v6.4.1)

### Fixed

- \(CONT-817\) Fix wrong package\_ensure parameter type [\#516](https://github.com/puppetlabs/puppetlabs-tomcat/pull/516) ([LukasAud](https://github.com/LukasAud))

## [v6.4.0](https://github.com/puppetlabs/puppetlabs-tomcat/tree/v6.4.0) (2023-03-23)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-tomcat/compare/v6.3.0...v6.4.0)
Expand Down
4 changes: 2 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2101,7 +2101,7 @@ Default value: `undef`

##### <a name="-tomcat--install--package_ensure"></a>`package_ensure`

Data type: `Optional[Boolean]`
Data type: `Optional[String[1]]`

Determines whether the specified package should be installed. Only valid if `install_from_source` is set to `false`. Maps to the `ensure` parameter of Puppet's native [package](https://docs.puppetlabs.com/references/latest/type.html#package).

Expand Down Expand Up @@ -2350,7 +2350,7 @@ Default value: `undef`

##### <a name="-tomcat--instance--package_ensure"></a>`package_ensure`

Data type: `Optional[Boolean]`
Data type: `Optional[String[1]]`

Ensure for the package resource when installing from package.

Expand Down
2 changes: 1 addition & 1 deletion manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
Optional[Array[String[1]]] $remove_default_webapps = undef,

# package options
Optional[Boolean] $package_ensure = undef,
Optional[String[1]] $package_ensure = undef,
Optional[String[1]] $package_name = undef,
Optional[Array[String[1]]] $package_options = undef,
) {
Expand Down
2 changes: 1 addition & 1 deletion manifests/instance.pp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
Optional[Boolean] $install_from_source = undef,
Optional[String[1]] $source_url = undef,
Optional[Boolean] $source_strip_first_dir = undef,
Optional[Boolean] $package_ensure = undef,
Optional[String[1]] $package_ensure = undef,
Optional[String[1]] $package_name = undef,
Optional[Array[String[1]]] $package_options = undef,
) {
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-tomcat",
"version": "6.4.0",
"version": "6.4.1",
"author": "puppetlabs",
"summary": "Installs, deploys, and configures Apache Tomcat web services.",
"license": "Apache-2.0",
Expand Down