Skip to content

Commit 71da822

Browse files
author
GitHub Action
committed
Release prep v5.0.0
1 parent a47161a commit 71da822

File tree

3 files changed

+32
-12
lines changed

3 files changed

+32
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
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).
44

5+
## [v5.0.0](https://github.com/puppetlabs/puppetlabs-motd/tree/v5.0.0) (2021-03-01)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-motd/compare/v4.3.0...v5.0.0)
8+
9+
### Changed
10+
11+
- Update metadata.json - remove ubuntu 14.04 [\#401](https://github.com/puppetlabs/puppetlabs-motd/pull/401) ([daianamezdrea](https://github.com/daianamezdrea))
12+
- pdksync - Remove SLES 11 support [\#399](https://github.com/puppetlabs/puppetlabs-motd/pull/399) ([sanfrancrisko](https://github.com/sanfrancrisko))
13+
- pdksync - Remove RHEL 5 family support [\#398](https://github.com/puppetlabs/puppetlabs-motd/pull/398) ([sanfrancrisko](https://github.com/sanfrancrisko))
14+
- pdksync - Remove Puppet 5 from testing and bump minimal version to 6.0.0 [\#394](https://github.com/puppetlabs/puppetlabs-motd/pull/394) ([carabasdaniel](https://github.com/carabasdaniel))
15+
516
## [v4.3.0](https://github.com/puppetlabs/puppetlabs-motd/tree/v4.3.0) (2020-12-14)
617

718
[Full Changelog](https://github.com/puppetlabs/puppetlabs-motd/compare/v4.2.0...v4.3.0)
@@ -85,7 +96,6 @@ All notable changes to this project will be documented in this file. The format
8596
- simplistic support for vscode integration to litmus added [\#212](https://github.com/puppetlabs/puppetlabs-motd/pull/212) ([abuxton](https://github.com/abuxton))
8697
- \(MODULES-8767\) Add support for SLES 15 [\#205](https://github.com/puppetlabs/puppetlabs-motd/pull/205) ([eimlav](https://github.com/eimlav))
8798
- \(FM-7647\) use puppet\_litmus for acceptance testing [\#200](https://github.com/puppetlabs/puppetlabs-motd/pull/200) ([tphoney](https://github.com/tphoney))
88-
- \(FM-7307\) - added translation functionality [\#150](https://github.com/puppetlabs/puppetlabs-motd/pull/150) ([Lavinia-Dan](https://github.com/Lavinia-Dan))
8999

90100
### Fixed
91101

@@ -130,6 +140,7 @@ All notable changes to this project will be documented in this file. The format
130140

131141
- \(FM-7310\)- Updating Windows version support [\#156](https://github.com/puppetlabs/puppetlabs-motd/pull/156) ([lionce](https://github.com/lionce))
132142
- \(FM-7306\) - Added Puppet 4 data types and changed templates to .epp [\#152](https://github.com/puppetlabs/puppetlabs-motd/pull/152) ([eimlav](https://github.com/eimlav))
143+
- \(FM-7307\) - added translation functionality [\#150](https://github.com/puppetlabs/puppetlabs-motd/pull/150) ([Lavinia-Dan](https://github.com/Lavinia-Dan))
133144
- \(maint\) removing registry pin, update stdlib bound [\#145](https://github.com/puppetlabs/puppetlabs-motd/pull/145) ([tphoney](https://github.com/tphoney))
134145
- \(FM-7237\) - Addition of support for Ubuntu 18.04 on motd [\#140](https://github.com/puppetlabs/puppetlabs-motd/pull/140) ([david22swan](https://github.com/david22swan))
135146

REFERENCE.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
## Classes
1212

13-
### `motd`
13+
### <a name="motd"></a>`motd`
1414

1515
This module configures a system message of the day on a wide variety of systems.
1616

@@ -24,65 +24,74 @@ include motd
2424

2525
#### Parameters
2626

27-
The following parameters are available in the `motd` class.
27+
The following parameters are available in the `motd` class:
2828

29-
##### `dynamic_motd`
29+
* [`dynamic_motd`](#dynamic_motd)
30+
* [`template`](#template)
31+
* [`content`](#content)
32+
* [`issue_template`](#issue_template)
33+
* [`issue_content`](#issue_content)
34+
* [`issue_net_template`](#issue_net_template)
35+
* [`issue_net_content`](#issue_net_content)
36+
* [`windows_motd_title`](#windows_motd_title)
37+
38+
##### <a name="dynamic_motd"></a>`dynamic_motd`
3039

3140
Data type: `Boolean`
3241

3342
Enables or disables dynamic motd on Debian systems.
3443

3544
Default value: ``true``
3645

37-
##### `template`
46+
##### <a name="template"></a>`template`
3847

3948
Data type: `Optional[String]`
4049

4150
Specifies a custom template. A template takes precedence over `content`. Valid options: '/mymodule/mytemplate.erb'.
4251

4352
Default value: ``undef``
4453

45-
##### `content`
54+
##### <a name="content"></a>`content`
4655

4756
Data type: `Optional[String]`
4857

4958
Specifies a static string as the motd content.
5059

5160
Default value: ``undef``
5261

53-
##### `issue_template`
62+
##### <a name="issue_template"></a>`issue_template`
5463

5564
Data type: `Optional[String]`
5665

5766
Specifies a custom template to process and save to `/etc/issue`. A template takes precedence over `issue_content`.
5867

5968
Default value: ``undef``
6069

61-
##### `issue_content`
70+
##### <a name="issue_content"></a>`issue_content`
6271

6372
Data type: `Optional[String]`
6473

6574
Specifies a static string as the `/etc/issue` content.
6675

6776
Default value: ``undef``
6877

69-
##### `issue_net_template`
78+
##### <a name="issue_net_template"></a>`issue_net_template`
7079

7180
Data type: `Optional[String]`
7281

7382
Specifies a custom template to process and save to `/etc/issue.net`. A template takes precedence over `issue_net_content`.
7483

7584
Default value: ``undef``
7685

77-
##### `issue_net_content`
86+
##### <a name="issue_net_content"></a>`issue_net_content`
7887

7988
Data type: `Optional[String]`
8089

8190
Specifies a static string as the `/etc/issue.net` content.
8291

8392
Default value: ``undef``
8493

85-
##### `windows_motd_title`
94+
##### <a name="windows_motd_title"></a>`windows_motd_title`
8695

8796
Data type: `String`
8897

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-motd",
3-
"version": "4.3.0",
3+
"version": "5.0.0",
44
"author": "puppetlabs",
55
"summary": "A simple module to demonstrate managing /etc/motd or Windows Logon Message as a template",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)