Skip to content

Commit 29b2a1a

Browse files
authored
Merge pull request voxpupuli#291 from rfreiberger/master
Added >= to capture version 7.0.0 as using the "software" url
2 parents 79e80b3 + ebebb83 commit 29b2a1a

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)