Skip to content

Commit

Permalink
Merge pull request #408 from voxpupuli/puppet8_20230723
Browse files Browse the repository at this point in the history
Add Puppet 8 support
  • Loading branch information
bastelfreak authored Feb 12, 2024
2 parents d367f39 + f72cf08 commit 75170d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 7.0.0 < 8.0.0"
"version_requirement": ">= 7.0.0 < 9.0.0"
}
],
"operatingsystem_support": [
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/mysql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class { 'java':
}
exec { 'tmpkey':
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",
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",
path => [ "/bin/", "/sbin/" , "/usr/bin/", "/usr/sbin/" ],
creates => '/tmp/cert.pem',
}
Expand Down
2 changes: 1 addition & 1 deletion templates/cluster.properties.epp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This ID must be unique across the cluster
jira.node.id = <%= $facts['fqdn'] %>
jira.node.id = <%= $facts['networking']['fqdn'] %>
# The location of the shared home directory for all JIRA nodes
jira.shared.home = <%= $jira::shared_homedir %>
<% if $jira::ehcache_listener_host { -%>
Expand Down

0 comments on commit 75170d0

Please sign in to comment.