From fc42137d389b89860b6b3f8c0d21bcbcbfaeec04 Mon Sep 17 00:00:00 2001 From: Frank Wall Date: Tue, 6 Oct 2020 13:57:39 +0200 Subject: [PATCH] release 1.0.0 --- CHANGELOG.md | 10 +++++----- README.md | 5 +++++ manifests/instance.pp | 2 +- metadata.json | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c954cd..e6edbf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,10 @@ All notable changes to this project will be documented in this file. -## Release 0.1.0 +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/spec/v2.0.0.html). -**Features** +## v1.0.0 +Initial release -**Bugfixes** - -**Known Issues** +[Unreleased]: https://github.com/markt-de/puppet-activemq/compare/v1.0.0...HEAD diff --git a/README.md b/README.md index 86cd0e1..808bbea 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ - [Security, Roles, Users and Queues](#security-roles-users-and-queues) - [Custom configuration](#custom-configuration) 1. [Reference](#reference) +1. [Limitations](#limitations) 1. [Development](#development) - [Contributing](#contributing) - [Fork](#fork) @@ -201,6 +202,10 @@ The module is designed for Hiera so it is highly recommended if you need to chan Classes and parameters are documented in [REFERENCE.md](REFERENCE.md). +## Limitations + +Upgrades of ActiveMQ Artemis are currently not supported, but this feature is planned for a later release of this module. + ## Development ### Contributing diff --git a/manifests/instance.pp b/manifests/instance.pp index 81dd210..c15c2f0 100644 --- a/manifests/instance.pp +++ b/manifests/instance.pp @@ -219,7 +219,7 @@ $_roles_tmp = $x[1]['roles'].reduce([]) |$m2, $z| { # Only add roles that are in use (=enabled). if (($z[0] =~ String) and ($z[1] =~ Boolean) and ($z[1] == true)) { - $m2 + "${z[0]}" + $m2 + $z[0] } else { $m2 } } if ($_roles_tmp =~ Array and !empty($_roles_tmp)) { diff --git a/metadata.json b/metadata.json index c06b05d..cfc34b0 100644 --- a/metadata.json +++ b/metadata.json @@ -1,7 +1,7 @@ { "name": "fraenki-activemq", "version": "1.0.0", - "author": "fraenki", + "author": "markt.de", "summary": "Manage ActiveMQ Artemis standalone and clusters", "license": "BSD-2-Clause", "source": "https://github.com/markt-de/puppet-activemq",