Skip to content

Commit 20d8bdd

Browse files
author
GitHub Action
committed
Release prep v9.1.1
1 parent 3eb712c commit 20d8bdd

File tree

4 files changed

+104
-2
lines changed

4 files changed

+104
-2
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
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+
## [v9.1.1](https://github.com/puppetlabs/puppetlabs-ntp/tree/v9.1.1) (2022-06-06)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-ntp/compare/v9.1.0...v9.1.1)
8+
9+
### Fixed
10+
11+
- pdksync - \(GH-iac-334\) Remove Support for Ubuntu 14.04/16.04 [\#639](https://github.com/puppetlabs/puppetlabs-ntp/pull/639) ([david22swan](https://github.com/david22swan))
12+
- pdksync - \(IAC-1787\) Remove Support for CentOS 6 [\#637](https://github.com/puppetlabs/puppetlabs-ntp/pull/637) ([david22swan](https://github.com/david22swan))
13+
- pdksync - \(IAC-1598\) - Remove Support for Debian 8 [\#635](https://github.com/puppetlabs/puppetlabs-ntp/pull/635) ([david22swan](https://github.com/david22swan))
14+
515
## [v9.1.0](https://github.com/puppetlabs/puppetlabs-ntp/tree/v9.1.0) (2021-08-26)
616

717
[Full Changelog](https://github.com/puppetlabs/puppetlabs-ntp/compare/v9.0.1...v9.1.0)
@@ -125,7 +135,7 @@ All notable changes to this project will be documented in this file. The format
125135

126136
### Added
127137

128-
- Add SLES 15 hiera data [\#472](https://github.com/puppetlabs/puppetlabs-ntp/pull/472) ([mattiasgiese](https://github.com/mattiasgiese))
138+
- Add SLES 15 hiera data [\#472](https://github.com/puppetlabs/puppetlabs-ntp/pull/472) ([mattiascockburn](https://github.com/mattiascockburn))
129139
- \(FM-7038\) Add support for Debian 9 [\#470](https://github.com/puppetlabs/puppetlabs-ntp/pull/470) ([david22swan](https://github.com/david22swan))
130140
- add tos\_orphan parameter [\#452](https://github.com/puppetlabs/puppetlabs-ntp/pull/452) ([disklord](https://github.com/disklord))
131141

REFERENCE.md

+90
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
* [`Ntp::Key_id`](#ntpkey_id): See http://doc.ntp.org/4.2.6/authopt.html#controlkey for documentation Alternatively: type Ntp::Key_id = Variant[Integer, Pattern['']]
2222
* [`Ntp::Poll_interval`](#ntppoll_interval): See http://doc.ntp.org/4.2.6/clockopt.html#server for documentation Alternatively: type Ntp::Poll_interval = Variant[Integer, Pattern['']]
2323

24+
### Plans
25+
26+
* [`ntp::acceptance::pe_agent`](#ntpacceptancepe_agent): Install PE
27+
* [`ntp::acceptance::pe_server`](#ntpacceptancepe_server): Install PE Server
28+
* [`ntp::acceptance::provision_integration`](#ntpacceptanceprovision_integration): Provisions machines
29+
2430
## Classes
2531

2632
### <a name="ntp"></a>`ntp`
@@ -573,3 +579,87 @@ Alias of
573579
Integer[4, 17]
574580
```
575581

582+
## Plans
583+
584+
### <a name="ntpacceptancepe_agent"></a>`ntp::acceptance::pe_agent`
585+
586+
Install PE Agent
587+
588+
#### Examples
589+
590+
#####
591+
592+
```puppet
593+
ntp::acceptance::pe_agent
594+
```
595+
596+
### <a name="ntpacceptancepe_server"></a>`ntp::acceptance::pe_server`
597+
598+
Install PE Server
599+
600+
#### Examples
601+
602+
#####
603+
604+
```puppet
605+
ntp::acceptance::pe_server
606+
```
607+
608+
#### Parameters
609+
610+
The following parameters are available in the `ntp::acceptance::pe_server` plan:
611+
612+
* [`version`](#version)
613+
* [`pe_settings`](#pe_settings)
614+
615+
##### <a name="version"></a>`version`
616+
617+
Data type: `Optional[String]`
618+
619+
620+
621+
Default value: `'2019.8.5'`
622+
623+
##### <a name="pe_settings"></a>`pe_settings`
624+
625+
Data type: `Optional[Hash]`
626+
627+
628+
629+
Default value: `{ password => 'puppetlabs' }`
630+
631+
### <a name="ntpacceptanceprovision_integration"></a>`ntp::acceptance::provision_integration`
632+
633+
Provisions machines for integration testing
634+
635+
#### Examples
636+
637+
#####
638+
639+
```puppet
640+
ntp::acceptance::provision_integration
641+
```
642+
643+
#### Parameters
644+
645+
The following parameters are available in the `ntp::acceptance::provision_integration` plan:
646+
647+
* [`image`](#image)
648+
* [`provision_type`](#provision_type)
649+
650+
##### <a name="image"></a>`image`
651+
652+
Data type: `Optional[String]`
653+
654+
655+
656+
Default value: `'centos-7'`
657+
658+
##### <a name="provision_type"></a>`provision_type`
659+
660+
Data type: `Optional[String]`
661+
662+
663+
664+
Default value: `'provision_service'`
665+

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-ntp",
3-
"version": "9.1.0",
3+
"version": "9.1.1",
44
"author": "puppetlabs",
55
"summary": "Installs, configures, and manages the NTP service.",
66
"license": "Apache-2.0",

pdk.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
ignore: []

0 commit comments

Comments
 (0)