Skip to content

Commit c19e3aa

Browse files
committed
Release 12.0.1
1 parent e259d5b commit c19e3aa

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
Each new release typically also includes the latest modulesync defaults.
55
These should not affect the functionality of the module.
66

7+
## [v12.0.1](https://github.com/voxpupuli/puppet-rabbitmq/tree/v12.0.1) (2022-06-17)
8+
9+
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v12.0.0...v12.0.1)
10+
11+
**Fixed bugs:**
12+
13+
- Fixing Yum repo [\#907](https://github.com/voxpupuli/puppet-rabbitmq/pull/907) ([bishopbm1](https://github.com/bishopbm1))
14+
- Use default install method on Archlinux [\#905](https://github.com/voxpupuli/puppet-rabbitmq/pull/905) ([wyardley](https://github.com/wyardley))
15+
716
## [v12.0.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v12.0.0) (2022-03-28)
817

918
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v11.1.0...v12.0.0)

REFERENCE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,23 @@ class { 'rabbitmq':
7474
}
7575
```
7676

77+
##### Offline installation from local mirror:
78+
79+
```puppet
80+
class { 'rabbitmq':
81+
key_content => template('openstack/rabbit.pub.key'),
82+
repo_gpg_key => '/tmp/rabbit.pub.key',
83+
}
84+
```
85+
86+
##### Use external package key source for any (apt/rpm) package provider:
87+
88+
```puppet
89+
class { 'rabbitmq':
90+
repo_gpg_key => 'http://www.some_site.some_domain/some_key.pub.key',
91+
}
92+
```
93+
7794
##### To use RabbitMQ Environment Variables, use the parameters `environment_variables` e.g.:
7895

7996
```puppet
@@ -600,6 +617,16 @@ Default value: 'installed'
600617

601618
Data type: `Optional[String]`
602619

620+
RPM package GPG key to import. Uses source method. Should be a URL for Debian/RedHat OS family, or a file name for
621+
RedHat OS family. Set to https://github.com/rabbitmq/signing-keys/releases/download/2.0/rabbitmq-release-signing-key.asc
622+
for Debian/RedHat OS Family by default.
623+
624+
Default value: `undef`
625+
626+
##### `repo_gpg_key`
627+
628+
Data type: `Optional[String]`
629+
603630
RPM package GPG key to import. Uses source method. Should be a URL for Debian/RedHat OS family, or a file name for
604631
RedHat OS family. Set to https://packagecloud.io/rabbitmq/rabbitmq-server/gpgkey for Debian/RedHat OS Family by
605632
default. Note, that `key_content`, if specified, would override this parameter for Debian OS family.

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppet-rabbitmq",
3-
"version": "12.0.1-rc0",
3+
"version": "12.0.1",
44
"author": "voxpupuli",
55
"summary": "Installs, configures, and manages RabbitMQ.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)