Skip to content

Commit

Permalink
Release version 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lbetz committed Aug 17, 2021
1 parent b69fce1 commit 65254c8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [v2.3.2](https://github.com/icinga/puppet-icinga/tree/v2.3.2) (2021-08-17)
[Full Changelog](https://github.com/icinga/puppet-icinga/compare/v2.3.1...v2.3.2)

**Fixed bugs:**

- using data types of another module breaks puppet 5 compatibility [\#35](https://github.com/Icinga/puppet-icinga/issues/35)

## [v2.3.1](https://github.com/icinga/puppet-icinga/tree/v2.3.1) (2021-06-21)
[Full Changelog](https://github.com/icinga/puppet-icinga/compare/v2.3.0...v2.3.1)

Expand Down
18 changes: 15 additions & 3 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@

* `icinga::database`: Private define resource for database backends.

### Data types

* [`Icinga::LogLevel`](#icingaloglevel): A strict type for log levels

## Classes

### `icinga::agent`
Expand Down Expand Up @@ -84,7 +88,7 @@ Default value: `'file'`

##### `logging_level`

Data type: `Optional[Icinga2::LogSeverity]`
Data type: `Optional[Icinga::LogLevel]`

Set the log level.

Expand Down Expand Up @@ -385,7 +389,7 @@ Default value: `'file'`

##### `logging_level`

Data type: `Optional[Icinga2::LogSeverity]`
Data type: `Optional[Icinga::LogLevel]`

Set the log level.

Expand Down Expand Up @@ -624,11 +628,19 @@ Default value: `'file'`

##### `logging_level`

Data type: `Optional[Icinga2::LogSeverity]`
Data type: `Optional[Icinga::LogLevel]`

Set the log level.

Default value: ``undef``

## Defined types

## Data types

### `Icinga::LogLevel`

A strict type for log levels

Alias of `Enum['debug', 'information', 'notice', 'warning', 'critical']`

3 changes: 1 addition & 2 deletions manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@
String $web_api_user = 'icingaweb2',
Optional[String] $web_api_pass = undef,
Enum['file', 'syslog'] $logging_type = 'file',
# Optional[Icinga::LogLevel] $logging_level = undef,
Icinga2::LogSeverity $logging_level = 'critical',
Optional[Icinga::LogLevel] $logging_level = undef,
) {

if empty($colocation_endpoints) {
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": "icinga-icinga",
"version": "2.3.1",
"version": "2.3.2",
"author": "Icinga",
"summary": "Puppet Module to manage Icinga repositories and provides a base class for Icinga Redis",
"license": "Apache-2.0",
Expand Down

0 comments on commit 65254c8

Please sign in to comment.