We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5653b66 + 75fe498 commit 88a133cCopy full SHA for 88a133c
functions/validate_version.pp
@@ -1,7 +1,7 @@
1
function peadm::validate_version(
2
String $version,
3
) {
4
- $supported = ($version =~ SemVerRange('2019.7.0'))
+ $supported = ($version =~ SemVerRange('>= 2019.7.0 < 2019.9.0'))
5
6
unless $supported {
7
fail(@("REASON"/L))
@@ -10,7 +10,7 @@ function peadm::validate_version(
10
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.7, 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