We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e01a3 commit 75fe498Copy full SHA for 75fe498
functions/validate_version.pp
@@ -1,16 +1,16 @@
1
function peadm::validate_version(
2
String $version,
3
) {
4
- $supported = ($version =~ SemVerRange('2019.8.0'))
+ $supported = ($version =~ SemVerRange('>= 2019.7.0 < 2019.9.0'))
5
6
unless $supported {
7
fail(@("REASON"/L))
8
This version of the puppetlabs-peadm module does not support PE ${version}.
9
10
- For PE versions older than 2019.8, please use version 1.x of the \
+ For PE versions older than 2019.7, please use version 1.x of the \
11
puppetlabs-peadm module.
12
13
- For PE versions newer than 2019.8, check to see if a new version of peadm \
+ For PE versions newer than 2019.8.x, check to see if a new version of peadm \
14
exists which supports that version of PE.
15
16
| REASON
0 commit comments