Skip to content

Commit 75170d0

Browse files
authored
Merge pull request #408 from voxpupuli/puppet8_20230723
Add Puppet 8 support
2 parents d367f39 + f72cf08 commit 75170d0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"requirements": [
2929
{
3030
"name": "puppet",
31-
"version_requirement": ">= 7.0.0 < 8.0.0"
31+
"version_requirement": ">= 7.0.0 < 9.0.0"
3232
}
3333
],
3434
"operatingsystem_support": [

spec/acceptance/mysql_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class { 'java':
5050
}
5151
5252
exec { 'tmpkey':
53-
command => "openssl req -x509 -nodes -days 1 -subj '/C=CA/ST=QC/L=Montreal/O=FOO/CN=${fqdn}' -newkey rsa:1024 -keyout /tmp/key.pem -out /tmp/cert.pem",
53+
command => "openssl req -x509 -nodes -days 1 -subj '/C=CA/ST=QC/L=Montreal/O=FOO/CN=${facts['networking']['fqdn']}' -newkey rsa:1024 -keyout /tmp/key.pem -out /tmp/cert.pem",
5454
path => [ "/bin/", "/sbin/" , "/usr/bin/", "/usr/sbin/" ],
5555
creates => '/tmp/cert.pem',
5656
}

templates/cluster.properties.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This ID must be unique across the cluster
2-
jira.node.id = <%= $facts['fqdn'] %>
2+
jira.node.id = <%= $facts['networking']['fqdn'] %>
33
# The location of the shared home directory for all JIRA nodes
44
jira.shared.home = <%= $jira::shared_homedir %>
55
<% if $jira::ehcache_listener_host { -%>

0 commit comments

Comments
 (0)