-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: openvox-server 7.18.1 fails to start #5
Comments
What Java version are you using? |
I think class file version 52 is Java 8, and 55 is Java 11. It is now compiled against Java 11. If you must use Java 8, we can probably change the build to use that instead. |
Looks like Java 8 support was dropped for puppetserver as well in 7.x |
The package requires |
So based on that, the package dependency should be updated from |
@nmburgan it looks like the following change to ezbake is needed: diff --git a/resources/puppetlabs/lein-ezbake/template/global/ext/fpm.rb b/resources/puppetlabs/lein-ezbake/template/global/ext/fpm.rb
index e2339f7..a8a116a 100755
--- a/resources/puppetlabs/lein-ezbake/template/global/ext/fpm.rb
+++ b/resources/puppetlabs/lein-ezbake/template/global/ext/fpm.rb
@@ -204,7 +204,7 @@ if options.output_type == 'rpm'
fail "Unrecognized el os version #{options.os_version}"
end
when 7
- 'java-1.8.0-openjdk-headless'
+ 'java-11-openjdk-headless'
else
fail "Unknown Puppet Platform Version #{options.platform_version}"
end If that looks right, I'm happy to put in a PR. |
Ah yes, you're right! In fact, I'd probably just remove the platform versioning switch and make 11 or 17 for everything. If we drop 11 for openvox 9, we can add more logic back if we have to. |
Is this a critical security issue?
Describe the Bug
The
puppetserver
service fails to start with the following error:Expected Behavior
puppetserver
service startsSteps to Reproduce
systemctl enable --now puppetserver.service
Environment
Version: 7.18.1-1.el9
Platform: AlmaLinux 9.5
Additional Context
No response
Relevant log output
The text was updated successfully, but these errors were encountered: