Skip to content

Commit 6f92c21

Browse files
dhopperfreiberger
andcommitted
Fix syntax to include version 7.0.0. Fixes voxpupuli#291
Co-authored-by: Robert Freiberger <rfreiberger@gmail.com>
1 parent 791b1bd commit 6f92c21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manifests/init.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
}
170170

171171
# The default Jira product starting with version 7 is 'jira-software'
172-
if ((versioncmp($version, '7.0.0') > 0) and ($product == 'jira')) {
172+
if ((versioncmp($version, '7.0.0') >= 0) and ($product == 'jira')) {
173173
$product_name = 'jira-software'
174174
} else {
175175
$product_name = $product

0 commit comments

Comments
 (0)